aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/test/testenv.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/ijar/test/testenv.sh')
-rwxr-xr-xthird_party/ijar/test/testenv.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/third_party/ijar/test/testenv.sh b/third_party/ijar/test/testenv.sh
index e14aadf7a1..0cb2c21da8 100755
--- a/third_party/ijar/test/testenv.sh
+++ b/third_party/ijar/test/testenv.sh
@@ -23,16 +23,16 @@
source "${TEST_SRCDIR}/src/test/shell/unittest.bash" || \
{ echo "Failed to source unittest.bash" >&2; exit 1; }
-## Mac OS X stat and MD5
+## OSX/BSD stat and MD5
PLATFORM="$(uname -s | tr 'A-Z' 'a-z')"
-if [[ "$PLATFORM" = "darwin" ]]; then
+if [[ "$PLATFORM" = "linux" ]]; then
function statfmt() {
- stat -f "%z" $1
+ stat -c "%s" $1
}
MD5SUM=/sbin/md5
else
function statfmt() {
- stat -c "%s" $1
+ stat -f "%z" $1
}
MD5SUM=md5sum
fi