diff options
author | Siri Hansen <[email protected]> | 2012-12-14 12:15:30 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-12-14 12:27:50 +0100 |
commit | 4aa7be58e6c1e7031042e7ea7b008de1cf4c0ad6 (patch) | |
tree | 10a3d6c48aee426863dfb53d1f7622d955f9f47c /lib | |
parent | e1f1d22a72bab14fe4e8a3443cbef298764c001e (diff) | |
download | otp-4aa7be58e6c1e7031042e7ea7b008de1cf4c0ad6.tar.gz otp-4aa7be58e6c1e7031042e7ea7b008de1cf4c0ad6.tar.bz2 otp-4aa7be58e6c1e7031042e7ea7b008de1cf4c0ad6.zip |
[common_test] Extend timetrap time in ct_hooks_SUITE
This suite often fails with timetrap timeout on some test machines.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common_test/test/ct_hooks_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_hooks_SUITE.erl b/lib/common_test/test/ct_hooks_SUITE.erl index 405df1e978..796a0832d7 100644 --- a/lib/common_test/test/ct_hooks_SUITE.erl +++ b/lib/common_test/test/ct_hooks_SUITE.erl @@ -64,7 +64,7 @@ end_per_testcase(TestCase, Config) -> suite() -> - [{timetrap,{seconds,20}}]. + [{timetrap,{minutes,1}}]. all() -> all(suite). |