coreutils-advcpmv: skip more failing tests

This commit is contained in:
madmaurice 2021-06-01 20:45:23 +02:00
parent 0103db92cd
commit 22b5142dce
1 changed files with 3 additions and 1 deletions

View File

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