From 465b852e3b0afd02ca615ad4cae3c056d2aeeb63 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 24 Oct 2005 13:41:17 +0000 Subject: New test, for "install -d" failure. --- tests/install/d-slashdot | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 tests/install/d-slashdot (limited to 'tests/install/d-slashdot') diff --git a/tests/install/d-slashdot b/tests/install/d-slashdot new file mode 100755 index 000000000..3c26b7b3b --- /dev/null +++ b/tests/install/d-slashdot @@ -0,0 +1,31 @@ +#!/bin/sh +# Ensure that ginstall -d works with arguments specified with a trailing "/.". + +if test "$VERBOSE" = yes; then + set -x + install --version +fi + +pwd=`pwd` +tmp=`echo "$0"|sed 's,.*/,,'`.tmp +trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0 +trap '(exit $?); exit' 1 2 13 15 + +framework_failure=0 +mkdir $tmp || framework_failure=1 +cd $tmp || framework_failure=1 + +if test $framework_failure = 1; then + echo 'failure in testing framework' + (exit 1); exit 1 +fi + +fail=0 + +ginstall -d d1/. || fail=1 +test -d d1 || fail=1 + +ginstall -d d2/.. || fail=1 +test -d d2 || fail=1 + +(exit $fail); exit $fail -- cgit v1.2.3-54-g00ecf