diff options
author | Peter Andersson <[email protected]> | 2015-03-17 13:34:30 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2015-03-18 10:03:13 +0100 |
commit | cbea3156f051f92ebd355ea05c7904aa080fd72f (patch) | |
tree | f4f7b35a5f44fe274061e90d14254b7e40e03cf3 /lib/common_test/test/ct_group_leader_SUITE_data | |
parent | 5fde23474656c1934250e8b8a9c7399dc00d5bdf (diff) | |
download | otp-cbea3156f051f92ebd355ea05c7904aa080fd72f.tar.gz otp-cbea3156f051f92ebd355ea05c7904aa080fd72f.tar.bz2 otp-cbea3156f051f92ebd355ea05c7904aa080fd72f.zip |
Enable timetrap scaling for all tests
Diffstat (limited to 'lib/common_test/test/ct_group_leader_SUITE_data')
-rw-r--r-- | lib/common_test/test/ct_group_leader_SUITE_data/group_leader_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common_test/test/ct_group_leader_SUITE_data/group_leader_SUITE.erl b/lib/common_test/test/ct_group_leader_SUITE_data/group_leader_SUITE.erl index 804f722081..bfdc78639e 100644 --- a/lib/common_test/test/ct_group_leader_SUITE_data/group_leader_SUITE.erl +++ b/lib/common_test/test/ct_group_leader_SUITE_data/group_leader_SUITE.erl @@ -258,14 +258,14 @@ gen_io(Label, N, Acc) -> %% (via ct logging functions) from an external process which has a %% different group leader than the test cases. unexp1(Config) -> - timer:sleep(1000), + ct:sleep(1000), gen_unexp_io(), - timer:sleep(1000), + ct:sleep(1000), check_unexp_io(Config), ok. unexp2(_) -> - timer:sleep(2000), + ct:sleep(2000), ok. gen_unexp_io() -> |