diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-12-30 13:32:50 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-02-07 01:55:42 -0500 |
commit | 71d5ab07fe413fb0d9b04b6b55abc6055c1f0a2e (patch) | |
tree | 995a55712d2057627a8548b43b0cc406e87009a7 | |
parent | 7e495b402f8350a856abcb2a8a58d694c03c5367 (diff) | |
download | haskell-71d5ab07fe413fb0d9b04b6b55abc6055c1f0a2e.tar.gz |
testsuite: Mark T14740 and tcfail159 as broken in debugged compiler
As noted in #16113, these trigger an assertion in isUnliftedRuntimeRep.
-rw-r--r-- | testsuite/tests/parser/should_fail/all.T | 2 | ||||
-rw-r--r-- | testsuite/tests/typecheck/should_fail/all.T | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/parser/should_fail/all.T b/testsuite/tests/parser/should_fail/all.T index 62ff1df665..ad23574358 100644 --- a/testsuite/tests/parser/should_fail/all.T +++ b/testsuite/tests/parser/should_fail/all.T @@ -115,7 +115,7 @@ test('T12610', normal, compile_fail, ['']) test('T13450', normal, compile_fail, ['']) test('T13450TH', normal, compile_fail, ['']) test('T14588', normal, compile_fail, ['']) -test('T14740', normal, compile_fail, ['']) +test('T14740', when(compiler_debugged(), expect_broken(16113)), compile_fail, ['']) test('T15209', normal, compile_fail, ['']) test('NoNumericUnderscores0', normal, compile_fail, ['']) diff --git a/testsuite/tests/typecheck/should_fail/all.T b/testsuite/tests/typecheck/should_fail/all.T index a87c846c49..52f02cfcf5 100644 --- a/testsuite/tests/typecheck/should_fail/all.T +++ b/testsuite/tests/typecheck/should_fail/all.T @@ -143,7 +143,7 @@ test('tcfail156', normal, compile_fail, ['']) test('tcfail157', normal, compile_fail, ['']) # Skip tcfail158 until Trac ticket #15899 fixes the broken test test('tcfail158', skip, compile_fail, ['']) -test('tcfail159', normal, compile_fail, ['']) +test('tcfail159', when(compiler_debugged(), expect_broken(16113)), compile_fail, ['']) test('tcfail160', normal, compile_fail, ['']) test('tcfail161', normal, compile_fail, ['']) test('tcfail162', normal, compile_fail, ['']) |