aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/code_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2011-08-23 05:39:50 +0200
committerBjörn Gustavsson <[email protected]>2011-11-17 10:09:51 +0100
commit6107d4123f23a48d77b1852df88cb0fee3a23539 (patch)
treeb1e90e37a1758422c0c9f7b4730ffbc5e391f611 /erts/emulator/test/code_SUITE.erl
parentab75301714c3183172e3d315437ed2d62d735c4e (diff)
downloadotp-6107d4123f23a48d77b1852df88cb0fee3a23539.tar.gz
otp-6107d4123f23a48d77b1852df88cb0fee3a23539.tar.bz2
otp-6107d4123f23a48d77b1852df88cb0fee3a23539.zip
code_SUITE clean-up: Remove experimental 'constant_pool' option
Diffstat (limited to 'erts/emulator/test/code_SUITE.erl')
-rw-r--r--erts/emulator/test/code_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/code_SUITE.erl b/erts/emulator/test/code_SUITE.erl
index 61eeec5ffd..9d15184530 100644
--- a/erts/emulator/test/code_SUITE.erl
+++ b/erts/emulator/test/code_SUITE.erl
@@ -404,7 +404,7 @@ make_stub_many_funs(Config) when is_list(Config) ->
constant_pools(Config) when is_list(Config) ->
?line Data = ?config(data_dir, Config),
?line File = filename:join(Data, "literals"),
- ?line {ok,literals,Code} = compile:file(File, [report,binary,constant_pool]),
+ ?line {ok,literals,Code} = compile:file(File, [report,binary]),
?line {module,literals} = erlang:load_module(literals,
make_sub_binary(Code)),