aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/misc_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-02-25 15:51:39 +0100
committerBjörn Gustavsson <[email protected]>2016-02-25 15:53:34 +0100
commit9d8efc5acc50ae1c76b00a67d06ed284fbcce0aa (patch)
tree75dff506bb429942f600d6c6bdb84ef2262001fd /lib/compiler/test/misc_SUITE.erl
parentb180108aed3f44654aae70e3b59a8e6fb02df995 (diff)
downloadotp-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/misc_SUITE.erl')
-rw-r--r--lib/compiler/test/misc_SUITE.erl7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/compiler/test/misc_SUITE.erl b/lib/compiler/test/misc_SUITE.erl
index d60141a10a..244d486753 100644
--- a/lib/compiler/test/misc_SUITE.erl
+++ b/lib/compiler/test/misc_SUITE.erl
@@ -91,12 +91,7 @@ abs(_N) ->
binary_part(_,_,_) ->
dummy_bp.
-% Make sure that auto-imported BIF's are overridden correctly
-
-override_bif(suite) ->
- [];
-override_bif(doc) ->
- ["Test dat local functions and imports override auto-imported BIFs."];
+%% Test that local functions and imports override auto-imported BIFs.
override_bif(Config) when is_list(Config) ->
?line dummy_abs = abs(1),
?line dummy_bp = binary_part(<<"hello">>,1,1),