summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorGreg Steuck <greg@nest.cx>2022-02-28 20:15:46 -0800
committerMatthew Pickering <matthewtpickering@gmail.com>2022-04-01 10:50:16 +0100
commit1daaefdf3f772d74838c0ef0a6be0e5a0ce6ca23 (patch)
tree15f73bc117cecf1278ba15299d8e27deacab084a /testsuite
parentfb65e6e3e27a56cd16142c0eb7bd0a7e1e259742 (diff)
downloadhaskell-1daaefdf3f772d74838c0ef0a6be0e5a0ce6ca23.tar.gz
T13366 requires c++ & c++abi libraries on OpenBSD
Fixes this failure: =====> 1 of 1 [0, 0, 0] T13366(normal) 1 of 1 [0, 0, 0] Compile failed (exit code 1) errors were: <no location info>: error: user specified .o/.so/.DLL could not be loaded (File not found) Whilst trying to load: (dynamic) stdc++ Additional directories searched: (none) *** unexpected failure for T13366(normal)
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/tests/th/all.T2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/th/all.T b/testsuite/tests/th/all.T
index 276faf84d8..d04bb08b29 100644
--- a/testsuite/tests/th/all.T
+++ b/testsuite/tests/th/all.T
@@ -402,7 +402,7 @@ test('T13366',
when(opsys('freebsd'), fragile(17739)),
when(opsys('darwin'), expect_broken(16083))],
compile_and_run,
- ['-lstdc++ -v0'])
+ ['-lstdc++ -v0'] if not opsys('openbsd') else ['-lc++ -lc++abi -v0'])
test('T13473', normal, multimod_compile_and_run,
['T13473.hs', '-v0 ' + config.ghc_th_way_flags])
test('T13587', expect_broken(13587), compile_and_run, ['-v0'])