summaryrefslogtreecommitdiff
path: root/tests/touch/obsolescent
blob: 31f32658efb5ea1a4bf6766c48b7bd2ccefa4845 (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
#!/bin/sh
# make sure touch succeeds with a single 8- or 10-digit file name argument

if test "$VERBOSE" = yes; then
  set -x
  touch --version
fi

pwd=`pwd`
tmp=obsol.$$
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
fi

fail=0

for ones in 11111111 1111111111; do
  touch $ones || fail=1
  test -f $ones || fail=1
done

(exit $fail); exit