diff options
author | Björn Gustavsson <[email protected]> | 2013-11-22 15:18:51 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-11-22 15:18:51 +0100 |
commit | 85266798ccd3a55361aa2ffa5c587d4c3f8cc3ae (patch) | |
tree | 9bfe91ad61c80e2a0a8518b2db34b7808dfb234b | |
parent | faf1528134253fd6e7eb95c3a6e77d40eb3377eb (diff) | |
parent | bfb832589ea4d5c60db202459beab102768341ff (diff) | |
download | otp-85266798ccd3a55361aa2ffa5c587d4c3f8cc3ae.tar.gz otp-85266798ccd3a55361aa2ffa5c587d4c3f8cc3ae.tar.bz2 otp-85266798ccd3a55361aa2ffa5c587d4c3f8cc3ae.zip |
Merge branch 'maint'
* maint:
Rename otp_8949_a/0 which common_test interprets as an info function
-rw-r--r-- | lib/compiler/test/compilation_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compiler/test/compilation_SUITE.erl b/lib/compiler/test/compilation_SUITE.erl index 8e7b7292cc..d517029b1b 100644 --- a/lib/compiler/test/compilation_SUITE.erl +++ b/lib/compiler/test/compilation_SUITE.erl @@ -50,7 +50,7 @@ groups() -> trycatch_4,opt_crash,otp_5404,otp_5436,otp_5481, otp_5553,otp_5632,otp_5714,otp_5872,otp_6121, otp_6121a,otp_6121b,otp_7202,otp_7345,on_load, - string_table,otp_8949_a,otp_8949_a,split_cases, + string_table,otp_8949_a,otp_8949_b,split_cases, beam_utils_liveopt]}]. init_per_suite(Config) -> @@ -630,13 +630,13 @@ string_table(Config) when is_list(Config) -> ok. otp_8949_a(Config) when is_list(Config) -> - value = otp_8949_a(), + value = do_otp_8949_a(), ok. -record(cs, {exs,keys = [],flags = 1}). -record(exs, {children = []}). -otp_8949_a() -> +do_otp_8949_a() -> case id([#cs{}]) of [#cs{}=Cs] -> SomeVar = id(value), |