summaryrefslogtreecommitdiff
path: root/tests/install/d-slashdot
blob: 3c26b7b3b951184dd37e3a9f8a4edac1e26737d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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