[commit: ghc] master: Disable T12903 on Darwin due to flakiness (16c70da)
git at git.haskell.org
git at git.haskell.org
Thu Jun 14 14:03:45 UTC 2018
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/16c70dafe21ddf8da6085e22994376a9c79628fb/ghc
>---------------------------------------------------------------
commit 16c70dafe21ddf8da6085e22994376a9c79628fb
Author: Tamar Christina <tamar at zhox.com>
Date: Mon Dec 12 14:21:27 2016 +0100
Disable T12903 on Darwin due to flakiness
Test seems to randomly fail on harbormaster and CircleCI. Disabling it
until it can be fixed.
Test Plan: make test TEST=T12903
Reviewers: austin, bgamari, simonmar, mpickering
Reviewed By: mpickering
Subscribers: mpickering, thomie, qnikst
GHC Trac Issues: #12903
>---------------------------------------------------------------
16c70dafe21ddf8da6085e22994376a9c79628fb
testsuite/tests/rts/all.T | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T
index 663d8b7..2faa7b7 100644
--- a/testsuite/tests/rts/all.T
+++ b/testsuite/tests/rts/all.T
@@ -386,9 +386,11 @@ test('T12497', [ unless(opsys('mingw32'), skip)
# This test sometimes produces out of sequence samples in the profasm way, but
# not reliably, so we just skip it. See ticket #15065.
+# Test is being skipped on darwin due to it's flakiness.
test('T12903', [ when(opsys('mingw32'), skip)
- , omit_ways(['ghci', 'profasm'])
- ], compile_and_run, [''])
+ , when(opsys('darwin'), skip)
+ , omit_ways(['ghci', 'profasm'])]
+ , compile_and_run, [''])
test('T13832', exit_code(1), compile_and_run, ['-threaded'])
test('T13894', normal, compile_and_run, [''])
More information about the ghc-commits
mailing list