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_sup_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_sup_SUITE.erl')
-rw-r--r-- | lib/os_mon/test/os_sup_SUITE.erl | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/lib/os_mon/test/os_sup_SUITE.erl b/lib/os_mon/test/os_sup_SUITE.erl index 8065b0b50c..82c04ceaae 100644 --- a/lib/os_mon/test/os_sup_SUITE.erl +++ b/lib/os_mon/test/os_sup_SUITE.erl @@ -66,10 +66,7 @@ all() -> end. -message(suite) -> - []; -message(doc) -> - ["Test OS message handling"]; +%% Test OS message handling message(Config) when is_list(Config) -> %% Fake an OS message @@ -95,10 +92,7 @@ message(Config) when is_list(Config) -> ok. -config(suite) -> - []; -config(doc) -> - ["Test configuration"]; +%% Test configuration config(Config) when is_list(Config) -> %% os_sup_enable==true and os_sup_own/os_sup_syslogconf cannot @@ -110,10 +104,7 @@ config(Config) when is_list(Config) -> ok. -port(suite) -> - []; -port(doc) -> - ["Test that os_sup handles a terminating port program"]; +%% Test that os_sup handles a terminating port program port(Config) when is_list(Config) -> Str = os:cmd("ps -e | grep '[f]errule'"), case io_lib:fread("~s", Str) of |