aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/compilation_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-04-27 07:39:17 +0200
committerBjörn Gustavsson <[email protected]>2016-04-27 14:43:10 +0200
commit723017eaddf053bd5868be54a60b8031142384b3 (patch)
tree8fcff54b34e56905acaf857b6e8868b8508e19e2 /lib/compiler/test/compilation_SUITE.erl
parentac25ce01652888cd9b2e1f88ef68933a7cb87d79 (diff)
downloadotp-723017eaddf053bd5868be54a60b8031142384b3.tar.gz
otp-723017eaddf053bd5868be54a60b8031142384b3.tar.bz2
otp-723017eaddf053bd5868be54a60b8031142384b3.zip
Remove compilation_SUITE:long_string/1
long_string/1 was written to test that long string were handled efficiently in beam_asm. Strings used to be stored in the string table chunk, but are currently literals. There does not seem that this test case is likely to find any bugs.
Diffstat (limited to 'lib/compiler/test/compilation_SUITE.erl')
-rw-r--r--lib/compiler/test/compilation_SUITE.erl7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/compiler/test/compilation_SUITE.erl b/lib/compiler/test/compilation_SUITE.erl
index 2d62c09883..0d43a89d68 100644
--- a/lib/compiler/test/compilation_SUITE.erl
+++ b/lib/compiler/test/compilation_SUITE.erl
@@ -43,7 +43,7 @@ groups() ->
otp_2330,
{group,vsn},otp_2380,otp_4790,
const_list_256,live_var,convopts,
- catch_in_catch,redundant_case,long_string,otp_5076,
+ catch_in_catch,redundant_case,otp_5076,
otp_5092,otp_5151,otp_5235,
trycatch_4,opt_crash,otp_5404,otp_5436,otp_5481,
otp_5553,otp_5632,otp_5714,otp_5872,otp_6121,
@@ -346,11 +346,6 @@ get_vsn(M) ->
{vsn,V} = lists:keyfind(vsn, 1, M:module_info(attributes)),
V.
-long_string(Config) when is_list(Config) ->
- %% The test must complete in one minute - it should be plenty of time.
- try_it(false, long_string, {minutes,1}, Config),
- ok.
-
compile_load(Module, Dir, Conf) ->
Src = filename:join(Dir, atom_to_list(Module)),
Out = proplists:get_value(priv_dir,Conf),