summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-07-08 23:14:52 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-07-10 03:03:51 +0300
commitf9654a88e76703a80b8d1464f384bba21abeaf52 (patch)
treeac78a007ffa1333350038a06993280cd41d8d5dc /pkgs/development
parent2ed3f7a020fa88ffbc68d168dd4523e4d1c9cd20 (diff)
downloadnixlib-f9654a88e76703a80b8d1464f384bba21abeaf52.tar
nixlib-f9654a88e76703a80b8d1464f384bba21abeaf52.tar.gz
nixlib-f9654a88e76703a80b8d1464f384bba21abeaf52.tar.bz2
nixlib-f9654a88e76703a80b8d1464f384bba21abeaf52.tar.lz
nixlib-f9654a88e76703a80b8d1464f384bba21abeaf52.tar.xz
nixlib-f9654a88e76703a80b8d1464f384bba21abeaf52.tar.zst
nixlib-f9654a88e76703a80b8d1464f384bba21abeaf52.zip
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
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/spidermonkey/17.0.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/spidermonkey/17.0.nix b/pkgs/development/interpreters/spidermonkey/17.0.nix
index cbe2c47594d4..5cd3ff0cca6b 100644
--- a/pkgs/development/interpreters/spidermonkey/17.0.nix
+++ b/pkgs/development/interpreters/spidermonkey/17.0.nix
@@ -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