Skip to content

Commit 41ab53e

Browse files
committed
testsuite: T13786 does not appear broken on linux with non-dynamic.
The referenced issue 20706 also doesn't list T13786 as a broken test.
1 parent 6981fbc commit 41ab53e

File tree

2 files changed

+8
-2
lines changed
  • testsuite/tests

2 files changed

+8
-2
lines changed

testsuite/tests/ghci/T13786/all.T

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
test('T13786',
2-
[when(unregisterised(), fragile(17018)), req_c, when(opsys('linux') and not ghc_dynamic(), expect_broken(20706))],
2+
[when(unregisterised(), fragile(17018)), req_c],
33
makefile_test, [])
44

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Test that GHC links to the C++ standard library as expected
22
# when the system-cxx-std-lib package is used.
33
test('T20010', req_c, makefile_test, [])
4-
test('T20010-ghci', [req_c, extra_files(['T20010_c.cpp', 'T20010.hs']), unless(ghc_dynamic(), expect_broken(20706))], makefile_test, [])
4+
test('T20010-ghci', [req_c, extra_files(['T20010_c.cpp', 'T20010.hs']),
5+
# this test is broken for dynamic builds. However, windows
6+
# is dynamic, but not really, and works significanlty
7+
# different from linux and darwin to not be broken when
8+
# ghc claims to be dynamic.
9+
unless(ghc_dynamic() and not opsys('mingw32'), expect_broken(20706))],
10+
makefile_test, [])

0 commit comments

Comments
 (0)