From d06135c132197521de71baf1096159d7020ce17d Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 26 Jul 2023 16:05:34 -0500 Subject: [PATCH] Skip the sparse tests on MacOS also. I don't know why they fail on MacOS, and can't say I care that much. --- tests/tar.test | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/tar.test b/tests/tar.test index e967b706..8e30e323 100755 --- a/tests/tar.test +++ b/tests/tar.test @@ -235,6 +235,7 @@ rm -rf path dd if=/dev/zero bs=4k count=1 seek=1 of=blah.img 2>/dev/null [ $(du blah.img | sed 's/[ \t].*//') -ne 4 ] && SKIP=999 rm -f blah.img +[ "$(uname)" == "Darwin" ] && SKIP=999 yes | head -n $((1<<18)) > bang { -- 2.39.2