diff options
author | Björn Gustavsson <[email protected]> | 2011-12-03 10:57:10 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-12-06 12:21:46 +0100 |
commit | 43a493df03174bc04d9a62edb4cff96943eebe35 (patch) | |
tree | 95b63b5f73d0aee727597563379aec093c3cd072 /lib/compiler/test/inline_SUITE.erl | |
parent | 6c91e303fe844ec9a795216bb9e4d39e760cecb8 (diff) | |
download | otp-43a493df03174bc04d9a62edb4cff96943eebe35.tar.gz otp-43a493df03174bc04d9a62edb4cff96943eebe35.tar.bz2 otp-43a493df03174bc04d9a62edb4cff96943eebe35.zip |
inline_SUITE: Add the comma_splitter/1 test case
Compilation would fail with an error message similar to:
comma_splitter: function split_at_comma/2+32:
Internal consistency check failed - please report this bug.
Instruction: {put,{x,0}}
Error: {match_context,{x,0}}:
Noticed-by: René Kijewski
Diffstat (limited to 'lib/compiler/test/inline_SUITE.erl')
-rw-r--r-- | lib/compiler/test/inline_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compiler/test/inline_SUITE.erl b/lib/compiler/test/inline_SUITE.erl index 086fba2649..2e17d3fde6 100644 --- a/lib/compiler/test/inline_SUITE.erl +++ b/lib/compiler/test/inline_SUITE.erl @@ -33,7 +33,7 @@ suite() -> [{ct_hooks,[ts_install_cth]}]. all() -> test_lib:recompile(?MODULE), [attribute, bsdecode, bsdes, barnes2, decode1, smith, - itracer, pseudoknot, lists, really_inlined, otp_7223, + itracer, pseudoknot, comma_splitter, lists, really_inlined, otp_7223, coverage]. groups() -> @@ -78,6 +78,7 @@ attribute(Config) when is_list(Config) -> ?comp(smith). ?comp(itracer). ?comp(pseudoknot). +?comp(comma_splitter). try_inline(Mod, Config) -> ?line Src = filename:join(?config(data_dir, Config), atom_to_list(Mod)), |