diff options
author | Peter Andersson <[email protected]> | 2011-04-06 16:51:04 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2011-04-20 22:32:09 +0200 |
commit | 1b51729df1a5c9678beb73318b8cf2a12b0e145d (patch) | |
tree | ba8f1faaa845bb53e5f56b3963f525a93f90b90a /lib/common_test/test/ct_skip_SUITE.erl | |
parent | e78722d26442a6d0caf81f200ee2bc0a8d7cfbba (diff) | |
download | otp-1b51729df1a5c9678beb73318b8cf2a12b0e145d.tar.gz otp-1b51729df1a5c9678beb73318b8cf2a12b0e145d.tar.bz2 otp-1b51729df1a5c9678beb73318b8cf2a12b0e145d.zip |
Do minor updates of the ts test framework.
Diffstat (limited to 'lib/common_test/test/ct_skip_SUITE.erl')
-rw-r--r-- | lib/common_test/test/ct_skip_SUITE.erl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/common_test/test/ct_skip_SUITE.erl b/lib/common_test/test/ct_skip_SUITE.erl index 62c5f10b7c..4ba4479208 100644 --- a/lib/common_test/test/ct_skip_SUITE.erl +++ b/lib/common_test/test/ct_skip_SUITE.erl @@ -99,8 +99,9 @@ auto_skip(Config) when is_list(Config) -> Events = ct_test_support:get_events(ERPid, Config), ct_test_support:log_events(auto_skip, - reformat(Events, ?eh), - ?config(priv_dir, Config)), + reformat(Events, ?eh), + ?config(priv_dir, Config), + Opts), TestEvents = events_to_check(auto_skip), ok = ct_test_support:verify_events(TestEvents, Events, Config). @@ -122,8 +123,9 @@ user_skip(Config) when is_list(Config) -> Events = ct_test_support:get_events(ERPid, Config), ct_test_support:log_events(user_skip, - reformat(Events, ?eh), - ?config(priv_dir, Config)), + reformat(Events, ?eh), + ?config(priv_dir, Config), + Opts), TestEvents = events_to_check(user_skip), ok = ct_test_support:verify_events(TestEvents, Events, Config). |