diff options
author | Björn Gustavsson <[email protected]> | 2016-02-25 15:51:39 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-02-25 15:53:34 +0100 |
commit | 9d8efc5acc50ae1c76b00a67d06ed284fbcce0aa (patch) | |
tree | 75dff506bb429942f600d6c6bdb84ef2262001fd /lib/compiler/test/beam_disasm_SUITE.erl | |
parent | b180108aed3f44654aae70e3b59a8e6fb02df995 (diff) | |
download | otp-9d8efc5acc50ae1c76b00a67d06ed284fbcce0aa.tar.gz otp-9d8efc5acc50ae1c76b00a67d06ed284fbcce0aa.tar.bz2 otp-9d8efc5acc50ae1c76b00a67d06ed284fbcce0aa.zip |
Eliminate use of doc and suite clauses
Those clause are obsolete and never used by common_test.
Diffstat (limited to 'lib/compiler/test/beam_disasm_SUITE.erl')
-rw-r--r-- | lib/compiler/test/beam_disasm_SUITE.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compiler/test/beam_disasm_SUITE.erl b/lib/compiler/test/beam_disasm_SUITE.erl index 75bc720596..2452b771ff 100644 --- a/lib/compiler/test/beam_disasm_SUITE.erl +++ b/lib/compiler/test/beam_disasm_SUITE.erl @@ -46,8 +46,7 @@ init_per_group(_GroupName, Config) -> end_per_group(_GroupName, Config) -> Config. -stripped(doc) -> - ["Check that stripped beam files can be disassembled"]; +%% Check that stripped beam files can be disassembled. stripped(Config) when is_list(Config) -> PrivDir = proplists:get_value(priv_dir, Config), ?line SrcName = filename:join(PrivDir, "tmp.erl"), |