diff options
author | Jim Meyering <meyering@redhat.com> | 2011-01-28 19:23:21 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-01-28 23:19:45 +0100 |
commit | 68a734d66bbe72d5d4133c386fa77069dd77fb8c (patch) | |
tree | 41bee2c43451851d824930d5ebb96f04d7e40186 /tests/dd | |
parent | 034e496e983d286011fa5f6058b541b163ba9afd (diff) | |
download | coreutils-68a734d66bbe72d5d4133c386fa77069dd77fb8c.tar.xz |
tests: remove obsolete uses of "$$" in temporary file names
Those were useful when tests might have been run in the same
directory and in parallel. Now, each test is run in a newly-
created empty directory.
* tests/cp/backup-1: Remove obsolete uses of "$$".
* tests/cp/same-file: Likewise.
* tests/dd/misc: Likewise.
* tests/mv/part-symlink: Likewise.
* tests/mv/to-symlink: Likewise.
* tests/touch/fail-diag: Likewise.
Diffstat (limited to 'tests/dd')
-rwxr-xr-x | tests/dd/misc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/dd/misc b/tests/dd/misc index f6efde2d9..820984c92 100755 --- a/tests/dd/misc +++ b/tests/dd/misc @@ -20,10 +20,10 @@ . "${srcdir=.}/init.sh"; path_prepend_ ../src print_ver_ dd -tmp_in=dd-in.$$ -tmp_in2=dd-in2.$$ -tmp_sym=dd-sym.$$ -tmp_out=dd-out.$$ +tmp_in=dd-in +tmp_in2=dd-in2 +tmp_sym=dd-sym +tmp_out=dd-out warn=0 echo data > $tmp_in || framework_failure |