diff options
author | Peter Andersson <[email protected]> | 2010-08-20 17:15:18 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2010-09-06 15:08:58 +0200 |
commit | 002c80f7d27fba875ad249ca672c3b91784bc762 (patch) | |
tree | 067fd4452de0269836479efb728c620376388780 /lib/common_test/test | |
parent | ac713b2123e0d5b43ea65b259aeb2e228d1ece9d (diff) | |
download | otp-002c80f7d27fba875ad249ca672c3b91784bc762.tar.gz otp-002c80f7d27fba875ad249ca672c3b91784bc762.tar.bz2 otp-002c80f7d27fba875ad249ca672c3b91784bc762.zip |
Fix various test suite, makefile, and doc related problems
Diffstat (limited to 'lib/common_test/test')
-rw-r--r-- | lib/common_test/test/Makefile | 1 | ||||
-rw-r--r-- | lib/common_test/test/ct_repeat_1_SUITE.erl | 23 |
2 files changed, 23 insertions, 1 deletions
diff --git a/lib/common_test/test/Makefile b/lib/common_test/test/Makefile index abb14c35d9..b96bdef5e0 100644 --- a/lib/common_test/test/Makefile +++ b/lib/common_test/test/Makefile @@ -33,6 +33,7 @@ MODULES= \ ct_groups_test_1_SUITE \ ct_groups_test_2_SUITE \ ct_sequence_1_SUITE \ + ct_repeat_1_SUITE \ ct_testspec_1_SUITE \ ct_skip_SUITE \ ct_error_SUITE \ diff --git a/lib/common_test/test/ct_repeat_1_SUITE.erl b/lib/common_test/test/ct_repeat_1_SUITE.erl index 2956f6a8ad..558cb731c9 100644 --- a/lib/common_test/test/ct_repeat_1_SUITE.erl +++ b/lib/common_test/test/ct_repeat_1_SUITE.erl @@ -182,5 +182,26 @@ events_to_check(_, 0) -> events_to_check(Test, N) -> test_events(Test) ++ events_to_check(Test, N-1). -test_events(_) -> +test_events(repeat_cs) -> + []; + +test_events(repeat_cs_and_grs) -> + []; + +test_events(repeat_seq_1) -> + []; + +test_events(repeat_seq_2) -> + []; + +test_events(repeat_cs_until_any_ok) -> + []; + +test_events(repeat_cs_until_any_fail) -> + []; + +test_events(repeat_cs_until_all_ok) -> + []; + +test_events(repeat_cs_until_all_fail) -> []. |