diff options
author | Peter Trommler <ptrommler@acm.org> | 2016-06-03 21:39:31 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-06-03 21:39:37 +0200 |
commit | 1dadd9a91454bb098e9c47d6c034b07e2e1e2529 (patch) | |
tree | ffe79b1ca983f1c6bc76e5f54d5f7ba34cab8437 /testsuite/tests/rts | |
parent | 4842a8050058bb571db861be3fc5ec03a1b4274b (diff) | |
download | haskell-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/rts')
-rw-r--r-- | testsuite/tests/rts/all.T | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index d462e39c72..94328466d2 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -171,8 +171,12 @@ def checkDynAsm(actual_file, normaliser): # These should have extra_clean() arguments, but I need # to somehow extract out the name of DLLs to do that -test('T5435_v_asm', when(arch('powerpc64'), expect_broken(11259)), run_command, ['$MAKE -s --no-print-directory T5435_v_asm']) -test('T5435_v_gcc', when(arch('powerpc64'), expect_broken(11259)), run_command, ['$MAKE -s --no-print-directory T5435_v_gcc']) +test('T5435_v_asm', when(arch('powerpc64') or arch('powerpc64le'), + expect_broken(11259)), + run_command, ['$MAKE -s --no-print-directory T5435_v_asm']) +test('T5435_v_gcc', when(arch('powerpc64') or arch('powerpc64le'), + expect_broken(11259)), + run_command, ['$MAKE -s --no-print-directory T5435_v_gcc']) test('T5435_dyn_asm', check_stdout(checkDynAsm), run_command, ['$MAKE -s --no-print-directory T5435_dyn_asm']) test('T5435_dyn_gcc', normal , run_command, ['$MAKE -s --no-print-directory T5435_dyn_gcc']) @@ -229,7 +233,7 @@ test('T7919', test('T8035', normal, compile_and_run, ['']) test('linker_unload', - [ when(arch('powerpc64'), expect_broken(11259)), + [ when(arch('powerpc64') or arch('powerpc64le'), expect_broken(11259)), extra_clean(['Test.o','Test.hi', 'linker_unload']) ], run_command, ['$MAKE -s --no-print-directory linker_unload']) |