diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/od/x8 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/od/x8 b/tests/od/x8 index 0d88bb85e..cdb536fa5 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 |