aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test/ct_repeat_1_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-10-12 10:51:46 +0200
committerLukas Larsson <[email protected]>2011-02-17 17:28:28 +0100
commita7cf522a129b3d707141bb681fc5c074bdca5e69 (patch)
treed5ee9ce41507eb4bd2009396709afb8bfe399674 /lib/common_test/test/ct_repeat_1_SUITE.erl
parentafda520a493cfc6dda951d0881d28190f564ec08 (diff)
downloadotp-a7cf522a129b3d707141bb681fc5c074bdca5e69.tar.gz
otp-a7cf522a129b3d707141bb681fc5c074bdca5e69.tar.bz2
otp-a7cf522a129b3d707141bb681fc5c074bdca5e69.zip
Update common_test tests to conform with common_test standard
Diffstat (limited to 'lib/common_test/test/ct_repeat_1_SUITE.erl')
-rw-r--r--lib/common_test/test/ct_repeat_1_SUITE.erl36
1 files changed, 18 insertions, 18 deletions
diff --git a/lib/common_test/test/ct_repeat_1_SUITE.erl b/lib/common_test/test/ct_repeat_1_SUITE.erl
index 1b4cafc9d3..5f85a6b61d 100644
--- a/lib/common_test/test/ct_repeat_1_SUITE.erl
+++ b/lib/common_test/test/ct_repeat_1_SUITE.erl
@@ -29,7 +29,7 @@
-compile(export_all).
--include_lib("test_server/include/test_server.hrl").
+-include_lib("common_test/include/ct.hrl").
-include_lib("common_test/include/ct_event.hrl").
-define(eh, ct_test_support_eh).
@@ -56,24 +56,24 @@ init_per_testcase(TestCase, Config) ->
end_per_testcase(TestCase, Config) ->
ct_test_support:end_per_testcase(TestCase, Config).
-all(doc) ->
- [];
+all() ->
+[repeat_cs, repeat_cs_and_grs, repeat_seq,
+ repeat_cs_until_any_ok, repeat_gr_until_any_ok,
+ repeat_cs_until_any_fail, repeat_gr_until_any_fail,
+ repeat_cs_until_all_ok, repeat_gr_until_all_ok,
+ repeat_cs_until_all_fail, repeat_gr_until_all_fail,
+ repeat_seq_until_any_fail,
+ repeat_shuffled_seq_until_any_fail].
+
+groups() ->
+ [].
+
+init_per_group(_GroupName, Config) ->
+ Config.
+
+end_per_group(_GroupName, Config) ->
+ Config.
-all(suite) ->
- [repeat_cs,
- repeat_cs_and_grs,
- repeat_seq,
- repeat_cs_until_any_ok,
- repeat_gr_until_any_ok,
- repeat_cs_until_any_fail,
- repeat_gr_until_any_fail,
- repeat_cs_until_all_ok,
- repeat_gr_until_all_ok,
- repeat_cs_until_all_fail,
- repeat_gr_until_all_fail,
- repeat_seq_until_any_fail,
- repeat_shuffled_seq_until_any_fail
- ].
%%--------------------------------------------------------------------
%% TEST CASES