diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-04-01 15:22:26 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-04-01 16:00:41 +0200 |
commit | e64d80a565de01e7a2493e2072967af6ddea29a6 (patch) | |
tree | 74ff9b11cabd88cddd1d1125de3bb46637a15a88 /erts/emulator/test | |
parent | 678649b1b2bea58c20788baa3b8dbcc06c458801 (diff) | |
download | otp-e64d80a565de01e7a2493e2072967af6ddea29a6.tar.gz otp-e64d80a565de01e7a2493e2072967af6ddea29a6.tar.bz2 otp-e64d80a565de01e7a2493e2072967af6ddea29a6.zip |
emulator: Increase timetrap timeout for match_spec_SUITE
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/match_spec_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/match_spec_SUITE.erl b/erts/emulator/test/match_spec_SUITE.erl index 330bef7104..8038888796 100644 --- a/erts/emulator/test/match_spec_SUITE.erl +++ b/erts/emulator/test/match_spec_SUITE.erl @@ -42,7 +42,7 @@ -export([init_per_testcase/2, end_per_testcase/2]). init_per_testcase(Func, Config) when is_atom(Func), is_list(Config) -> - Dog=?t:timetrap(?t:seconds(10)), + Dog=?t:timetrap(?t:seconds(30)), [{watchdog, Dog}|Config]. end_per_testcase(_Func, Config) -> |