prelink: disable tests

This commit is contained in:
Nick Cao 2022-07-27 15:38:39 +08:00
parent 54f2dacce1
commit d776e7bc65
No known key found for this signature in database
GPG key ID: 068A56CEF48FA2C1

View file

@ -31,16 +31,8 @@ stdenv.mkDerivation rec {
libiberty
];
# Disable some tests because they're failing
preCheck = ''
for f in reloc2 layout1 unprel1 tls3 cxx2 cxx3 quick1 quick2 deps1 deps2; do
echo '#' > testsuite/''${f}.sh
done
patchShebangs --build testsuite
'';
# most tests fail
doCheck = !stdenv.isAarch64;
doCheck = false;
enableParallelBuilding = true;