spidermonkey: Disable tests on ARM
Some tests fail and cause kernel spam of this sort: [ 6607.906159] Alignment trap: not handling instruction f4430a1f at [<0021e500>] [ 6607.913308] Unhandled fault: alignment exception (0x811) at 0x003a15ec [ 6607.919864] pgd = e8b88000 [ 6607.922601] [003a15ec] *pgd=fb185835
This commit is contained in:
parent
2ed3f7a020
commit
f9654a88e7
|
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
doCheck = !stdenv.isArm; # fails on v7 with "Alignment trap: not handling instruction" in kernel log
|
||||
preCheck = ''
|
||||
rm jit-test/tests/sunspider/check-date-format-tofte.js # https://bugzil.la/600522
|
||||
|
||||
|
|
Loading…
Reference in New Issue