diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-01 18:09:14 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-01 18:09:14 +0200 |
commit | c36e45f8faa5ffb24479e4ab268ab151e305e779 (patch) | |
tree | 19eead6e6dd0e518943a4c9a4f45f0c6a298c430 /lib/os_mon/test/os_mon_SUITE.erl | |
parent | a3115154f754ed9f8db0dd0bfb07642efe54261c (diff) | |
download | otp-c36e45f8faa5ffb24479e4ab268ab151e305e779.tar.gz otp-c36e45f8faa5ffb24479e4ab268ab151e305e779.tar.bz2 otp-c36e45f8faa5ffb24479e4ab268ab151e305e779.zip |
Eliminate use of doc and suite clauses
Those clause are obsolete and never used by common_test.
Diffstat (limited to 'lib/os_mon/test/os_mon_SUITE.erl')
-rw-r--r-- | lib/os_mon/test/os_mon_SUITE.erl | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/os_mon/test/os_mon_SUITE.erl b/lib/os_mon/test/os_mon_SUITE.erl index af70dc2a6c..ace06796d6 100644 --- a/lib/os_mon/test/os_mon_SUITE.erl +++ b/lib/os_mon/test/os_mon_SUITE.erl @@ -36,10 +36,7 @@ all() -> _OS -> [app_file, appup_file] end. -app_file(suite) -> - []; -app_file(doc) -> - ["Testing .app file"]; +%% Testing .app file app_file(Config) when is_list(Config) -> ok = test_server:app_test(os_mon), ok. @@ -47,10 +44,7 @@ app_file(Config) when is_list(Config) -> appup_file(Config) when is_list(Config) -> ok = test_server:appup_test(os_mon). -config(suite) -> - []; -config(doc) -> - ["Test OS_Mon configuration"]; +%% Test OS_Mon configuration config(Config) when is_list(Config) -> IsReg = fun(Name) -> is_pid(whereis(Name)) end, |