summaryrefslogtreecommitdiff
path: root/testsuite/tests/codeGen
diff options
context:
space:
mode:
authorPeter Trommler <ptrommler@acm.org>2016-06-03 21:39:31 +0200
committerBen Gamari <ben@smart-cactus.org>2016-06-03 21:39:37 +0200
commit1dadd9a91454bb098e9c47d6c034b07e2e1e2529 (patch)
treeffe79b1ca983f1c6bc76e5f54d5f7ba34cab8437 /testsuite/tests/codeGen
parent4842a8050058bb571db861be3fc5ec03a1b4274b (diff)
downloadhaskell-1dadd9a91454bb098e9c47d6c034b07e2e1e2529.tar.gz
testsuite: Mark broken tests on powerpc64le
Mark all failing tests that have a ticket for powerpc64 as broken. Most of these failures are due to the lack of linker support in the runtime system. Test Plan: validate on powerpc and AIX Reviewers: erikd, bgamari, simonmar, hvr, austin Reviewed By: austin Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2289 GHC Trac Issues: #11261, #11259, #11260, #11323
Diffstat (limited to 'testsuite/tests/codeGen')
-rw-r--r--testsuite/tests/codeGen/should_compile/all.T8
1 files changed, 5 insertions, 3 deletions
diff --git a/testsuite/tests/codeGen/should_compile/all.T b/testsuite/tests/codeGen/should_compile/all.T
index 9402b7d73a..57ae5eb492 100644
--- a/testsuite/tests/codeGen/should_compile/all.T
+++ b/testsuite/tests/codeGen/should_compile/all.T
@@ -27,11 +27,13 @@ test('T9303', normal, compile, ['-O2'])
test('T9329', [cmm_src], compile, [''])
test('debug', [ extra_clean(['debug.cmm']),
- when(arch('powerpc64'), expect_broken(11261))],
+ when((arch('powerpc64') or arch('powerpc64le')),
+ expect_broken(11261))],
run_command,
['$MAKE -s --no-print-directory debug'])
test('T9964', normal, compile, ['-O'])
test('T10518', [cmm_src], compile, [''])
-test('T10667', [ when(arch('powerpc64'), expect_broken(11261)) ],
+test('T10667', [ when((arch('powerpc64') or arch('powerpc64le')),
+ expect_broken(11261))],
compile, ['-g'])
-test('T12115', normal, compile, ['']) \ No newline at end of file
+test('T12115', normal, compile, [''])