diff options
author | Alexander Vershilov <alexander.vershilov@gmail.com> | 2016-12-13 14:54:36 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-12-13 15:38:33 -0500 |
commit | aa123f445338c2980fcee87a09c01d14a83bf409 (patch) | |
tree | 6f3acf3c210fcc482e9a74d45d4b39d62c25f16c /testsuite/tests/rts/all.T | |
parent | 9cb4a130a5ed16ed95b8cab90cefe23dbae9a337 (diff) | |
download | haskell-aa123f445338c2980fcee87a09c01d14a83bf409.tar.gz |
Fix testcase T12903 on OS X
Old test used timeouts that leads to the various sporadic errors.
Tet was rewritten to not use timeouts.
Reviewers: austin, erikd, simonmar, bgamari
Reviewed By: simonmar
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2827
GHC Trac Issues: #12956
Diffstat (limited to 'testsuite/tests/rts/all.T')
-rw-r--r-- | testsuite/tests/rts/all.T | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index c44ec04a34..a645ad3a4e 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -376,9 +376,5 @@ test('T12497', [ unless(opsys('mingw32'), skip) ], run_command, ['$MAKE -s --no-print-directory T12497']) -# Test is being skipped on darwin due to it's flakiness. -# See 12956 -test('T12903', [when(opsys('mingw32'), skip), - when(opsys('darwin'), skip)], - compile_and_run, ['']) +test('T12903', [when(opsys('mingw32'), skip)], compile_and_run, ['']) |