diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-12-23 02:24:17 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-12-24 00:24:04 -0500 |
commit | 5499f12f32a8deaa2a30c13359473b1178236341 (patch) | |
tree | 84cedd79df924829c6bb60b4e7419c04e5de0781 /testsuite/tests | |
parent | bd8a6bde2ee73e599800137b9428a401bc105985 (diff) | |
download | haskell-5499f12f32a8deaa2a30c13359473b1178236341.tar.gz |
testsuite: Mark th tests as broken in ext-interp way in LLVM build flavours
This is due to the failures documented in #16087. The condition here could be
improved as it matches on `BUILD_FLAVOUR` instead of looking at the compiler
flags. However, it's better than nothing and I hope we will be able to fix these
issues before long.
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/th/all.T | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/tests/th/all.T b/testsuite/tests/th/all.T index 96c7e1e726..1bea110399 100644 --- a/testsuite/tests/th/all.T +++ b/testsuite/tests/th/all.T @@ -12,6 +12,8 @@ setTestOpts(req_interp) if config.have_ext_interp : setTestOpts(extra_ways(['ext-interp'])) setTestOpts(only_ways(['normal','ghci','ext-interp'])) + if config.ghc_built_by_llvm: + setTestOpts(expect_broken_for(16087, ['ext-interp'])) test('TH_mkName', normal, compile, ['-v0']) test('TH_overloadedlabels', normal, compile, ['-v0']) |