diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-07-17 18:36:10 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-07-19 20:22:53 +0200 |
commit | c6266995b9e007af4b48db8de1ddbaa7ced912fe (patch) | |
tree | 684239d9d2222a340f30e33418c74d1b2cad82a9 /lib/stdlib/test/timer_SUITE.erl | |
parent | eae988281f641302a6d19166f77306d8a3210895 (diff) | |
download | otp-c6266995b9e007af4b48db8de1ddbaa7ced912fe.tar.gz otp-c6266995b9e007af4b48db8de1ddbaa7ced912fe.tar.bz2 otp-c6266995b9e007af4b48db8de1ddbaa7ced912fe.zip |
stdlib: Remove VxWorks
Diffstat (limited to 'lib/stdlib/test/timer_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/timer_SUITE.erl | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/stdlib/test/timer_SUITE.erl b/lib/stdlib/test/timer_SUITE.erl index f84c72b0f8..1110891ab8 100644 --- a/lib/stdlib/test/timer_SUITE.erl +++ b/lib/stdlib/test/timer_SUITE.erl @@ -32,7 +32,6 @@ %% functions I guess. But I don't have time for that now. %% %% Expect it to run for at least 5-10 minutes! -%% Except for VxWorks of course, where a couple of hours is more apropriate... %% The main test case in this module is "do_big_test", which @@ -77,12 +76,7 @@ end_per_group(_GroupName, Config) -> do_big_test(TConfig) when is_list(TConfig) -> Dog = ?t:timetrap(?t:minutes(20)), Save = process_flag(trap_exit, true), - Result = case os:type() of - vxworks -> - big_test(10); - _ -> - big_test(200) - end, + Result = big_test(200), process_flag(trap_exit, Save), ?t:timetrap_cancel(Dog), report_result(Result). |