diff options
author | Nick Clifton <nickc@redhat.com> | 2002-04-11 13:42:03 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-04-11 13:42:03 +0000 |
commit | 690649bea2775fc4c0a61b0fc2ad338436345e64 (patch) | |
tree | e7268bccd14533a0e0d6163739adbce441d88409 /binutils/testsuite | |
parent | b9612d142d9c0e1d5e757bf0bf56b915590ba194 (diff) | |
download | gdb-690649bea2775fc4c0a61b0fc2ad338436345e64.zip gdb-690649bea2775fc4c0a61b0fc2ad338436345e64.tar.gz gdb-690649bea2775fc4c0a61b0fc2ad338436345e64.tar.bz2 |
Use 'file delete' instead of 'exec rm -f'.
Diffstat (limited to 'binutils/testsuite')
-rw-r--r-- | binutils/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/ar.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 5e061a9..8b24f7c 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2002-04-11 Nick Clifton <nickc@cambridge.redhat.com> + + * binutils-all/ar.exp (long_filenames): Use 'file delete' instead + of 'exec rm -f'. + 2002-04-10 Nick Clifton <nickc@cambridge.redhat.com> * binutils-all/ar.exp (long_filenames): Delete the abc... files diff --git a/binutils/testsuite/binutils-all/ar.exp b/binutils/testsuite/binutils-all/ar.exp index d73b975..f418e94 100644 --- a/binutils/testsuite/binutils-all/ar.exp +++ b/binutils/testsuite/binutils-all/ar.exp @@ -163,7 +163,7 @@ proc long_filenames { } { } close $f - exec rm -f $file1 $file2 + file delete $file1 $file2 pass $testname } |