diff options
author | Alp Mestanogullari <alp@well-typed.com> | 2018-08-06 17:53:29 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-08-06 17:53:41 -0400 |
commit | e28bb01d707aee462eae07c5a30a596b2830579f (patch) | |
tree | 429605cfd8be8eed531e31e90266723afb96b068 /testsuite/tests/perf | |
parent | 24b76d1bef7e61791907fbd063f85643eeb1211a (diff) | |
download | haskell-e28bb01d707aee462eae07c5a30a596b2830579f.tar.gz |
fix timeout related i686 validation issues
As can be seen on https://circleci.com/gh/ghc/ghc/7578, some
tests are failing on i686 due to too restrictive timeouts. This patch
tweaks those in the hope of solving the 4 failures from that URL due to
timeouts.
Test Plan: ./validate on i686
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
Differential Revision: https://phabricator.haskell.org/D5031
Diffstat (limited to 'testsuite/tests/perf')
-rw-r--r-- | testsuite/tests/perf/compiler/all.T | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/tests/perf/compiler/all.T b/testsuite/tests/perf/compiler/all.T index cc8f81475f..3e724ec63f 100644 --- a/testsuite/tests/perf/compiler/all.T +++ b/testsuite/tests/perf/compiler/all.T @@ -1186,6 +1186,11 @@ test('MultiLayerModules', ]), pre_cmd('./genMultiLayerModules'), extra_files(['genMultiLayerModules']), + compile_timeout_multiplier(2) + # 2 is _a lot_ (timeout after 600s, to build 600 modules), + # but this test has been failing every now and then, + # especially on i386. Let's just give it some room + # to complete successfully reliably everywhere. ], multimod_compile, ['MultiLayerModules', '-v0']) @@ -1229,6 +1234,11 @@ test('T13701', ]), pre_cmd('./genT13701'), extra_files(['genT13701']), + compile_timeout_multiplier(2) + # 2 is _a lot_ (timeout after 600s, to build 600 modules), + # but this test has been failing every now and then, + # especially on i386. Let's just give it some room + # to complete successfully reliably everywhere. ], multimod_compile, ['T13701', '-v0']) @@ -1241,6 +1251,11 @@ test('T13719', ]), pre_cmd('./genT13719'), extra_files(['genT13719']), + compile_timeout_multiplier(2) + # 2 is _a lot_ (timeout after 600s, to build 600 modules), + # but this test has been failing every now and then, + # especially on i386. Let's just give it some room + # to complete successfully reliably everywhere. ], multimod_compile, ['T13719', '-v0']) |