diff options
author | Peter Andersson <[email protected]> | 2013-11-12 00:48:24 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2013-11-18 18:07:11 +0100 |
commit | af1891a1415d9aedb7de866639cf997c31b98e35 (patch) | |
tree | 7162f44132436343afd002d0f851939bd9205e4c /lib/common_test/src | |
parent | a522754dde5071ca131f3463a57f5ca4ecfedd6b (diff) | |
download | otp-af1891a1415d9aedb7de866639cf997c31b98e35.tar.gz otp-af1891a1415d9aedb7de866639cf997c31b98e35.tar.bz2 otp-af1891a1415d9aedb7de866639cf997c31b98e35.zip |
Add test cases for new and modified functionality
Diffstat (limited to 'lib/common_test/src')
-rw-r--r-- | lib/common_test/src/ct_framework.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_framework.erl b/lib/common_test/src/ct_framework.erl index 15809637fd..670c073b29 100644 --- a/lib/common_test/src/ct_framework.erl +++ b/lib/common_test/src/ct_framework.erl @@ -1283,7 +1283,10 @@ report(What,Data) -> node=node(), data=Data}), case Data of - {_,Func,_} when Func /= end_per_suite, Func /= end_per_group -> + {_,Func,_} when Func /= init_per_suite, + Func /= init_per_group, + Func /= end_per_suite, + Func /= end_per_group -> ct_hooks:on_tc_skip(What, Data), add_to_stats(user_skipped); _ -> |