diff options
author | Jim Meyering <jim@meyering.net> | 2002-06-15 08:03:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-06-15 08:03:24 +0000 |
commit | 19548deac926e71464d5d0ca042764908f7e1f3e (patch) | |
tree | 8454b1837ea9b0e79f79732548e867b2008895b4 | |
parent | ff43f6b441deb426ffafdee0e9a7fe666ff1c29e (diff) | |
download | coreutils-19548deac926e71464d5d0ca042764908f7e1f3e.tar.xz |
Change temp file names to accommodate DOS 8.3 file name limitation.
-rwxr-xr-x | tests/touch/no-rights | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/touch/no-rights b/tests/touch/no-rights index 3906564a8..cf0a92267 100755 --- a/tests/touch/no-rights +++ b/tests/touch/no-rights @@ -10,8 +10,8 @@ fi DEFAULT_SLEEP_SECONDS=2 SLEEP_SECONDS=${SLEEP_SECONDS=$DEFAULT_SLEEP_SECONDS} -t1=touch-no-rw1 -t2=touch-no-rw2 +t1=no-rw1 +t2=no-rw2 rm -rf $t1 $t2 : > $t1 |