summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAmbroz Bizjak <ambrop7@gmail.com>2015-02-28 14:49:39 +0000
committerLluĂ­s Batlle i Rossell <viric@viric.name>2015-03-06 09:11:03 +0000
commite47afb3601f56dc9ed9594a842638ef5bd5ab01c (patch)
tree8775856ab1d43b9afb19264bd25c5aa44e93b2a6 /pkgs
parent9d8c26efaef7900f2658ba5695cee15334f6f649 (diff)
downloadnixlib-e47afb3601f56dc9ed9594a842638ef5bd5ab01c.tar
nixlib-e47afb3601f56dc9ed9594a842638ef5bd5ab01c.tar.gz
nixlib-e47afb3601f56dc9ed9594a842638ef5bd5ab01c.tar.bz2
nixlib-e47afb3601f56dc9ed9594a842638ef5bd5ab01c.tar.lz
nixlib-e47afb3601f56dc9ed9594a842638ef5bd5ab01c.tar.xz
nixlib-e47afb3601f56dc9ed9594a842638ef5bd5ab01c.tar.zst
nixlib-e47afb3601f56dc9ed9594a842638ef5bd5ab01c.zip
spidermonkey-17: Disable test which fails on ARM.
(cherry picked from commit b90dca35aac458953182b4e1ad725c9466d11a66)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/spidermonkey/17.0.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/spidermonkey/17.0.nix b/pkgs/development/interpreters/spidermonkey/17.0.nix
index fc4546bc09e2..53b2e4072ade 100644
--- a/pkgs/development/interpreters/spidermonkey/17.0.nix
+++ b/pkgs/development/interpreters/spidermonkey/17.0.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, nspr, perl, python, zip }:
+{ stdenv, fetchurl, pkgconfig, nspr, perl, python, zip, bash }:
 
 stdenv.mkDerivation rec {
   version = "17.0.0";
@@ -31,6 +31,10 @@ stdenv.mkDerivation rec {
   preCheck = ''
     rm jit-test/tests/sunspider/check-date-format-tofte.js    # https://bugzil.la/600522
 
+    # Test broken on ARM. Fedora disables it.
+    # https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130617/1041155.html
+    echo -e '#!${bash}/bin/bash\nexit 0' > config/find_vanilla_new_calls
+
     paxmark m shell/js17
     paxmark mr jsapi-tests/jsapi-tests
   '';