usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-immutable.sh
blob5b8d8d01332f2f5e7e595a5202e6f01cc1342d3b
1 #!/bin/sh
3 # Print "Skipping test" if immutability cannot be enforced.
4 ./test-immutable${EXEEXT} 0
5 if test $? = 77; then exit 77; fi
7 st=0
8 for i in 1 2 3 4 ; do
9 ${CHECKER} ./test-immutable${EXEEXT} $i \
10 || { echo test-immutable.sh: test case $i failed >&2; st=1; }
11 done
12 exit $st