diff options
author | Kostis Sagonas <[email protected]> | 2016-08-25 14:55:05 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2016-08-25 14:55:05 +0200 |
commit | 45276a834883a64eb0115cdcb651f613b8197733 (patch) | |
tree | e602b5efcdf763cd1431f6b0db234540f5ce830d /lib | |
parent | 5492ce9951aced8686dbef99d0693e7c6da50c7d (diff) | |
download | otp-45276a834883a64eb0115cdcb651f613b8197733.tar.gz otp-45276a834883a64eb0115cdcb651f613b8197733.tar.bz2 otp-45276a834883a64eb0115cdcb651f613b8197733.zip |
Increase the time limit used by the test suite
This is required in some really old SPARC machines running Solaris
we still have access to.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hipe/test/hipe_testsuite_driver.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/test/hipe_testsuite_driver.erl b/lib/hipe/test/hipe_testsuite_driver.erl index 03ec7adfd0..a3048d907e 100644 --- a/lib/hipe/test/hipe_testsuite_driver.erl +++ b/lib/hipe/test/hipe_testsuite_driver.erl @@ -99,7 +99,7 @@ write_suite(Suite) -> write_header(#suite{suitename = SuiteName, outputfile = OutputFile, testcases = TestCases}) -> Exports = format_export(TestCases), - TimeLimit = 3, %% with 1 or 2 it fails on some slow machines... + TimeLimit = 5, %% with 1 or 2 it fails on some slow machines... io:format(OutputFile, "%% ATTENTION!\n" "%% This is an automatically generated file. Do not edit.\n\n" |