1998-05-11 11:46:48 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
|
|
set -x
|
1999-01-18 10:54:36 +08:00
|
|
|
cp --version
|
1998-05-11 11:46:48 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
framework_failure=0
|
1999-01-18 10:54:36 +08:00
|
|
|
rm -f a a~ || framework_failure=1
|
1998-08-15 11:03:44 +08:00
|
|
|
echo a > a || framework_failure=1
|
|
|
|
echo a-tilde > a~ || framework_failure=1
|
1998-05-11 11:46:48 +08:00
|
|
|
|
|
|
|
if test $framework_failure = 1; then
|
|
|
|
echo 'failure in testing framework'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Make sure we get English translations.
|
2000-10-22 21:09:28 +08:00
|
|
|
. $srcdir/../lang-default
|
1998-05-11 11:46:48 +08:00
|
|
|
|
|
|
|
# This cp command should exit nonzero.
|
1999-10-16 22:44:17 +08:00
|
|
|
cp --b=simple a~ a > out 2>&1 && fail=1
|
1998-05-11 11:46:48 +08:00
|
|
|
|
1999-01-18 10:54:36 +08:00
|
|
|
sed "s,cp:,XXX:," out > out2
|
1998-05-11 11:46:48 +08:00
|
|
|
|
|
|
|
cat > exp <<\EOF
|
|
|
|
XXX: backing up `a' would destroy source; `a~' not copied
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cmp out2 exp || fail=1
|
|
|
|
|
1999-01-18 10:54:36 +08:00
|
|
|
rm -f out out2 exp a a~
|
1998-05-11 11:46:48 +08:00
|
|
|
|
2002-04-20 05:55:30 +08:00
|
|
|
(exit $fail); exit
|