diff options
author | Kostis Sagonas <[email protected]> | 2016-05-04 14:08:49 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2016-05-04 14:08:49 +0200 |
commit | 809467b0d3be736c77775c147f3c32990ef979c3 (patch) | |
tree | 218739e98501ef81fa0925094f354c13c004ef93 | |
parent | 8c0f3f5a2d3d3a0fb329cf96e9f3ed662725c69f (diff) | |
download | otp-809467b0d3be736c77775c147f3c32990ef979c3.tar.gz otp-809467b0d3be736c77775c147f3c32990ef979c3.tar.bz2 otp-809467b0d3be736c77775c147f3c32990ef979c3.zip |
Up the limit for the timetrap used in the HiPE testsuite
Without this change, one test (bs_utf) times out when run on some
very slow SUN/SPARC machine we still have around. Unfortunately,
this is the only such machine that we have access to these days.
Perhaps suprisingly, all the HiPE tests pass on SPARC, which is
nice to know that this backend still works, despite not having
been tested for more than one (almost two?) years now.
-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 9f5d7421b4..64c5c0a7c9 100644 --- a/lib/hipe/test/hipe_testsuite_driver.erl +++ b/lib/hipe/test/hipe_testsuite_driver.erl @@ -107,7 +107,7 @@ write_suite(Suite) -> write_header(#suite{suitename = SuiteName, outputfile = OutputFile, testcases = TestCases}) -> Exports = format_export(TestCases), - TimeLimit = 2, %% with 1 it fails on some slow machines... + TimeLimit = 3, %% 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" |