1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00

Skip this test if ../../src/dd isn't readable.

This commit is contained in:
Paul Eggert
2005-04-18 06:35:06 +00:00
parent d5cca2b3b2
commit 2cb82c08c6

View File

@@ -8,6 +8,11 @@ fi
dir=dir
file=file
test -r ../../src/dd || {
echo >&2 "$0: ../../src/dd is not readable, so can't run this test"
exit 77
}
pwd=`pwd`
tmp=inst-basic.$$
trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0