diff options
author | Jim Meyering <jim@meyering.net> | 1998-06-28 21:11:20 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-06-28 21:11:20 +0000 |
commit | 4dc12acc27a210f854e13d748ce09b4e7b9514f1 (patch) | |
tree | 9e1fa0630ecaf3523869dcb7cc79ad88c8250c56 /tests/cp/same-file | |
parent | a92dd43b7c9dcdd87fe5bbbf92d6c9774a80c4d6 (diff) | |
download | coreutils-4dc12acc27a210f854e13d748ce09b4e7b9514f1.tar.xz |
*** empty log message ***
Diffstat (limited to 'tests/cp/same-file')
-rwxr-xr-x | tests/cp/same-file | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/cp/same-file b/tests/cp/same-file index 5fc4fd6e4..b64af3052 100755 --- a/tests/cp/same-file +++ b/tests/cp/same-file @@ -2,7 +2,8 @@ # Test some of cp's options and how cp handles situations in # which a naive implementation might overwrite the source file. -: ${CP=cp} +# FIXME: punt for now +CP=cp if test "$VERBOSE" = yes; then set -x @@ -23,7 +24,9 @@ trap "cd $pwd; rm -rf $actual $expected dir" 0 1 2 3 15 exec 1> $actual +# FIXME: This should be bigger: like more than 8k contents=XYZ + for args in 'foo symlink' 'symlink foo' 'foo foo' 'sl1 sl2' 'foo hardlink'; do for options in '' -d -f -df -b -bd -bf -bdf \ -l -dl -fl -dfl -bl -bdl -bfl -bdfl; do |