spidermonkey-17: Disable test which fails on ARM.

(cherry picked from commit b90dca35aac458953182b4e1ad725c9466d11a66)
This commit is contained in:
Ambroz Bizjak 2015-02-28 14:49:39 +00:00 committed by Lluís Batlle i Rossell
parent 9d8c26efae
commit e47afb3601

View File

@ -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
'';