diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-06-17 10:33:00 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-06-17 10:33:00 -0400 |
commit | 9897440ec9fbf17fb609e9a0d9456861c5f7f24a (patch) | |
tree | ff963acb268a620696f15e59d7a13ca481a9ea0a /testsuite | |
parent | 749bc1a0b08c75b69b5ea7d6faab3626b1d75c03 (diff) | |
download | haskell-9897440ec9fbf17fb609e9a0d9456861c5f7f24a.tar.gz |
testsuite: Mark print022 as broken on 32-bit platforms
Due to #15061.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/ghci.debugger/scripts/all.T | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/all.T b/testsuite/tests/ghci.debugger/scripts/all.T index a24a2540c0..88acdb0a25 100644 --- a/testsuite/tests/ghci.debugger/scripts/all.T +++ b/testsuite/tests/ghci.debugger/scripts/all.T @@ -21,8 +21,10 @@ test('print018', extra_files(['../Test.hs']), ghci_script, ['print018.script']) test('print019', extra_files(['../Test.hs']), ghci_script, ['print019.script']) test('print020', extra_files(['../HappyTest.hs']), ghci_script, ['print020.script']) test('print021', normal, ghci_script, ['print021.script']) -test('print022', when(arch('powerpc64'), expect_broken(14455)), ghci_script, - ['print022.script']) +test('print022', + [when(arch('powerpc64'), expect_broken(14455)), + when(wordsize(32), expect_broken(15061))], + ghci_script, ['print022.script']) test('print023', extra_files(['../Test.hs']), ghci_script, ['print023.script']) test('print024', extra_files(['../Test.hs']), ghci_script, ['print024.script']) test('print025', normal, ghci_script, ['print025.script']) |