coreutils/tests/cp/backup-is-src

35 lines
615 B
Plaintext
Raw Normal View History

1998-05-11 11:46:48 +08:00
#!/bin/sh
if test "$VERBOSE" = yes; then
set -x
cp --version
1998-05-11 11:46:48 +08:00
fi
framework_failure=0
rm -f a a~ || framework_failure=1
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.
. $srcdir/../lang-default
1998-05-11 11:46:48 +08:00
# This cp command should exit nonzero.
cp --b=simple a~ a > out 2>&1 && fail=1
1998-05-11 11:46:48 +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
rm -f out out2 exp a a~
1998-05-11 11:46:48 +08:00
(exit $fail); exit