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 /rts | |
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 'rts')
-rw-r--r-- | rts/Interpreter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Interpreter.c b/rts/Interpreter.c index 0e981007a3..7734aacd36 100644 --- a/rts/Interpreter.c +++ b/rts/Interpreter.c @@ -674,7 +674,7 @@ do_apply: // the appropriate info table in the gap. for (i = 0; i < arity; i++) { Sp[(int)i-1] = Sp[i]; - // ^^^^^ careful, i-1 might be negative, but i in unsigned + // ^^^^^ careful, i-1 might be negative, but i is unsigned } Sp[arity-1] = app_ptrs_itbl[n-arity-1]; Sp--; @@ -736,7 +736,7 @@ do_apply: // the appropriate info table in the gap. for (i = 0; i < arity; i++) { Sp[(int)i-1] = Sp[i]; - // ^^^^^ careful, i-1 might be negative, but i in unsigned + // ^^^^^ careful, i-1 might be negative, but i is unsigned } Sp[arity-1] = app_ptrs_itbl[n-arity-1]; Sp--; |