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