From: Paul Eggert Date: Mon, 21 Feb 2005 07:22:49 +0000 (+0000) Subject: Don't assume that the current host supports 64-bit integers. X-Git-Tag: CPPI-1_12~1445 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80cc962bd565f3f502adff2b33be342be6ef4bbb;p=thirdparty%2Fcoreutils.git Don't assume that the current host supports 64-bit integers. --- diff --git a/tests/od/x8 b/tests/od/x8 index 0d88bb85e7..cdb536fa5f 100755 --- a/tests/od/x8 +++ b/tests/od/x8 @@ -7,6 +7,11 @@ if test "$VERBOSE" = yes; then od --version fi +od -t x8 /dev/null >/dev/null || { + echo >&2 "$0: 8-byte test skipped" + exit 77 +} + pwd=`pwd` t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$ trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0