aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2010-08-20 17:15:18 +0200
committerPeter Andersson <[email protected]>2010-09-06 15:08:58 +0200
commit002c80f7d27fba875ad249ca672c3b91784bc762 (patch)
tree067fd4452de0269836479efb728c620376388780 /lib/common_test/test
parentac713b2123e0d5b43ea65b259aeb2e228d1ece9d (diff)
downloadotp-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/Makefile1
-rw-r--r--lib/common_test/test/ct_repeat_1_SUITE.erl23
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) ->
[].