]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Don't assume that the current host supports 64-bit integers.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 21 Feb 2005 07:22:49 +0000 (07:22 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 21 Feb 2005 07:22:49 +0000 (07:22 +0000)
tests/od/x8

index 0d88bb85e79bb80cab61939b4e05870e1a2785f2..cdb536fa5f9548515bbf47f2fbe3cff703d62645 100755 (executable)
@@ -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