summaryrefslogtreecommitdiff
path: root/tests/install/basic-1
diff options
context:
space:
mode:
Diffstat (limited to 'tests/install/basic-1')
-rwxr-xr-xtests/install/basic-15
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/install/basic-1 b/tests/install/basic-1
index 66df30415..c3e16b40b 100755
--- a/tests/install/basic-1
+++ b/tests/install/basic-1
@@ -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