From e165f73601de2f1745a2dc366861fc3cd466f70b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20He=C3=9F?= Date: Fri, 29 Oct 2021 13:21:08 +0200 Subject: [PATCH] coreutils: Disable cut-huge-range.sh --- pkgs/tools/misc/coreutils/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 786d5cd94fd8..c4280fbd1227 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -73,6 +73,9 @@ stdenv.mkDerivation (rec { '' ])) + (optionalString stdenv.isAarch64 '' sed '2i print "Skipping tail assert test"; exit 77' -i ./tests/tail-2/assert.sh + + # Sometimes fails: https://github.com/NixOS/nixpkgs/pull/143097#issuecomment-954462584 + sed '2i echo Skipping cut huge range test && exit 77' -i ./tests/misc/cut-huge-range.sh ''); outputs = [ "out" "info" ];