diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 16:20:53 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 16:20:53 +0200 |
commit | e660be75fdaa3d7e98da94194063494ac92ab807 (patch) | |
tree | b2f8c92038461e35b0cb17a8c62764d86f9b4a9e /lib/tools/test/cprof_SUITE.erl | |
parent | fba6f786f26aac535fe2c9f3c10472efe841cb09 (diff) | |
download | otp-e660be75fdaa3d7e98da94194063494ac92ab807.tar.gz otp-e660be75fdaa3d7e98da94194063494ac92ab807.tar.bz2 otp-e660be75fdaa3d7e98da94194063494ac92ab807.zip |
Eliminate use of doc and suite clauses
Those clause are obsolete and never used by common_test.
Diffstat (limited to 'lib/tools/test/cprof_SUITE.erl')
-rw-r--r-- | lib/tools/test/cprof_SUITE.erl | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/lib/tools/test/cprof_SUITE.erl b/lib/tools/test/cprof_SUITE.erl index ef0bcf5418..7a00e81f6a 100644 --- a/lib/tools/test/cprof_SUITE.erl +++ b/lib/tools/test/cprof_SUITE.erl @@ -92,24 +92,15 @@ all() -> not_run(Config) when is_list(Config) -> {skipped,"Native code"}. -basic(suite) -> - []; -basic(doc) -> - ["Tests basic profiling"]; +%% Tests basic profiling basic(Config) when is_list(Config) -> basic_test(). -on_load(suite) -> - []; -on_load(doc) -> - ["Tests profiling of unloaded module"]; +%% Tests profiling of unloaded module on_load(Config) when is_list(Config) -> on_load_test(Config). -modules(suite) -> - []; -modules(doc) -> - ["Tests profiling of several modules"]; +%% Tests profiling of several modules modules(Config) when is_list(Config) -> modules_test(Config). |