In the test 'compare delta flavors', /usr/bin/stat is used to get file size. This isn't portable. There already is a dependency on Perl, use its '-s' operator to get the file size. Signed-off-by: Arjen Laarhoven <arjen@xxxxxxxx> --- t/t5300-pack-object.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/t5300-pack-object.sh b/t/t5300-pack-object.sh index 35e036a..a400e7a 100755 --- a/t/t5300-pack-object.sh +++ b/t/t5300-pack-object.sh @@ -125,8 +125,8 @@ cd "$TRASH" test_expect_success \ 'compare delta flavors' \ - 'size_2=`stat -c "%s" test-2-${packname_2}.pack` && - size_3=`stat -c "%s" test-3-${packname_3}.pack` && + 'size_2=`perl -e "print -s q[test-2-${packname_2}.pack]"` && + size_3=`perl -e "print -s q[test-3-${packname_3}.pack]"` && test $size_2 -gt $size_3' rm -fr .git2 -- 1.5.1.rc3.29.gd8b6 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html