diff options
author | Björn Gustavsson <[email protected]> | 2012-02-01 07:30:12 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-02-06 15:16:12 +0100 |
commit | f028f375e7e7bc1f859e247651c5ddb816bdd208 (patch) | |
tree | f71faa7be7fb91ed432e76a0b3d5e10e38d432b9 /lib/debugger/test/bs_match_misc_SUITE.erl | |
parent | 854023efb6444a5332d1bd12293ef63cbf0faf0d (diff) | |
download | otp-f028f375e7e7bc1f859e247651c5ddb816bdd208.tar.gz otp-f028f375e7e7bc1f859e247651c5ddb816bdd208.tar.bz2 otp-f028f375e7e7bc1f859e247651c5ddb816bdd208.zip |
debugger tests: Increase time trap timeout
Some bit syntax test cases take much longer time to complete when
libraries are in native code, probably because of context switches
between the eval_bits module and the debugger modules.
Diffstat (limited to 'lib/debugger/test/bs_match_misc_SUITE.erl')
-rw-r--r-- | lib/debugger/test/bs_match_misc_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugger/test/bs_match_misc_SUITE.erl b/lib/debugger/test/bs_match_misc_SUITE.erl index 89fce263f5..ec3746d76a 100644 --- a/lib/debugger/test/bs_match_misc_SUITE.erl +++ b/lib/debugger/test/bs_match_misc_SUITE.erl @@ -57,7 +57,7 @@ end_per_suite(Config) when is_list(Config) -> init_per_testcase(_Case, Config) -> test_lib:interpret(?MODULE), - Dog = test_server:timetrap(?t:minutes(1)), + Dog = test_server:timetrap(?t:minutes(15)), [{watchdog,Dog}|Config]. end_per_testcase(_Case, Config) -> |