diff options
author | Peter Trommler <ptrommler@acm.org> | 2016-02-25 14:46:13 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-02-25 15:41:28 +0100 |
commit | feb19eae3d7b70a2c0038624dcfe2c417213d5c5 (patch) | |
tree | 5a67272fae260f1b55f3a9ff7bd70c9d37b20ea5 /testsuite/tests/ghc-api | |
parent | c1efdcc40209bc4f0ded85269eb8ba49c7d1ff09 (diff) | |
download | haskell-feb19eae3d7b70a2c0038624dcfe2c417213d5c5.tar.gz |
testsuite: mark tests broken on powerpc64
The following tests fail on powerpc64 and have a ticket.
Mark those tests as expect_broken.
Here are the details:
The PowerPC native code generator does not support DWARF debug
information. This is tracked in ticket #11261. Mark the respective
tests broken on powerpc64.
testsuite: mark print022 broken on powerpc64
Ticket #11262 tracks difference in stdout for print022.
testsuite: mark recomp015 broken on powerpc64
testsuite: mark recomp011 broken on powerpc64
This is tracked as ticket #11323 and #11260.
testsuite: mark linker tests broken on powerpc64
Ticket #11259 tracks tests failing because there is no RTS
linker on powerpc64.
Test Plan: validate
Reviewers: erikd, austin, bgamari
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D1928
GHC Trac Issues: #11259, #11260, #11261, #11262, #11323
Diffstat (limited to 'testsuite/tests/ghc-api')
-rw-r--r-- | testsuite/tests/ghc-api/T10052/all.T | 2 | ||||
-rw-r--r-- | testsuite/tests/ghc-api/all.T | 7 | ||||
-rw-r--r-- | testsuite/tests/ghc-api/dynCompileExpr/all.T | 1 |
3 files changed, 6 insertions, 4 deletions
diff --git a/testsuite/tests/ghc-api/T10052/all.T b/testsuite/tests/ghc-api/T10052/all.T index bb73f85fa1..40b80cdc5e 100644 --- a/testsuite/tests/ghc-api/T10052/all.T +++ b/testsuite/tests/ghc-api/T10052/all.T @@ -1,2 +1,2 @@ -test('T10052', normal, run_command, +test('T10052', when(arch('powerpc64'), expect_broken(11259)), run_command, ['$MAKE -s --no-print-directory T10052']) diff --git a/testsuite/tests/ghc-api/all.T b/testsuite/tests/ghc-api/all.T index e3e31da70c..8aa2ede97f 100644 --- a/testsuite/tests/ghc-api/all.T +++ b/testsuite/tests/ghc-api/all.T @@ -2,16 +2,17 @@ test('ghcApi', normal, compile_and_run, ['-package ghc']) test('T6145', normal, run_command, ['$MAKE -s --no-print-directory T6145']) -test('T8639_api', normal, +test('T8639_api', when(arch('powerpc64'), expect_broken(11259)), run_command, ['$MAKE -s --no-print-directory T8639_api']) -test('T8628', normal, +test('T8628', when(arch('powerpc64'), expect_broken(11259)), run_command, ['$MAKE -s --no-print-directory T8628']) test('T9595', extra_run_opts('"' + config.libdir + '"'), compile_and_run, ['-package ghc']) -test('T10508_api', extra_run_opts('"' + config.libdir + '"'), +test('T10508_api', [ extra_run_opts('"' + config.libdir + '"'), + when(arch('powerpc64'), expect_broken(11259))], compile_and_run, ['-package ghc']) test('T10942', extra_run_opts('"' + config.libdir + '"'), diff --git a/testsuite/tests/ghc-api/dynCompileExpr/all.T b/testsuite/tests/ghc-api/dynCompileExpr/all.T index c6034eab6b..cefbe691f1 100644 --- a/testsuite/tests/ghc-api/dynCompileExpr/all.T +++ b/testsuite/tests/ghc-api/dynCompileExpr/all.T @@ -1,5 +1,6 @@ test('dynCompileExpr', [ extra_run_opts('"' + config.libdir + '"'), when(opsys('mingw32'), expect_broken_for(5987, ['dyn'])), + when(arch('powerpc64'), expect_broken(11259)), omit_ways(prof_ways) ], # cannot run interpreted code with -prof compile_and_run, ['-package ghc']) |