From 22b5142dceae17a9f2bf47bb4d5abca7a8245eb2 Mon Sep 17 00:00:00 2001 From: MadMaurice Date: Tue, 1 Jun 2021 20:45:23 +0200 Subject: [PATCH] coreutils-advcpmv: skip more failing tests --- pkgs/coreutils-advcpmv.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/coreutils-advcpmv.nix b/pkgs/coreutils-advcpmv.nix index 4816e3d..6926510 100644 --- a/pkgs/coreutils-advcpmv.nix +++ b/pkgs/coreutils-advcpmv.nix @@ -23,8 +23,10 @@ coreutils.overrideAttrs (old: { ) ]; - # With the patch above, the test tests/misc/usage_vs_getopt.sh does not work anymore. + # With the patch above, these tests don't work anymore. postPatch = old.postPatch + '' sed '2i echo Skipping usage vs getopts test && exit 77' -i ./tests/misc/usage_vs_getopt.sh + sed '2i print "Skipping\n"; exit 77;' -i ./tests/mv/i-1.pl + sed '2i echo Skipping && exit 77' -i ./tests/mv/i-2.sh ''; })