diff options
author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2019-10-11 07:52:24 +0300 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-12 06:33:05 -0400 |
commit | cd1a8808031de162fe92b04de905d59886595abb (patch) | |
tree | 8b17821bb6f1013ff4ec69f1b520ae9fe57ffd7e | |
parent | f1ce3535d20007dc78aeed096f32fc9dfacf11b3 (diff) | |
download | haskell-cd1a8808031de162fe92b04de905d59886595abb.tar.gz |
Skip T13767 on Darwin
The CI job fails with:
+++ rts/T13676.run/T13676.run.stderr.normalised 2019-10-09 12:27:56.000000000 -0700
@@ -0,0 +1,4 @@
+dyld: Library not loaded: @rpath/libHShaskeline-0.7.5.0-ghc8.9.0.20191009.dylib
+ Referenced from: /Users/builder/builds/ewzE5N2p/0/ghc/ghc/inplace/lib/bin/ghc
+ Reason: image not found
+*** Exception: readCreateProcess: '/Users/builder/builds/ewzE5N2p/0/ghc/ghc/inplace/lib/bin/ghc' '-B/Users/builder/builds/ewzE5N2p/0/ghc/ghc/inplace/lib' '-e' ''/''$'/'' == '/''/x0024'/''' +RTS '-tT13676.t' (exit -6): failed
Unable to reproduce locally.
-rw-r--r-- | testsuite/tests/rts/all.T | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 2e2709af0d..9e20ba0b81 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -394,4 +394,6 @@ test('keep-cafs', test('T16514', unless(opsys('mingw32'), skip), compile_and_run, ['T16514_c.cpp -lstdc++']) test('test-zeroongc', extra_run_opts('-DZ'), compile_and_run, ['-debug']) -test('T13676', [extra_files(['T13676.hs'])], ghci_script, ['T13676.script']) +test('T13676', [when(opsys('darwin'), skip), # skip on Darwin due to CI issues + extra_files(['T13676.hs'])], + ghci_script, ['T13676.script']) |