summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-08-16 17:39:59 +0000
committerJim Meyering <jim@meyering.net>1997-08-16 17:39:59 +0000
commit962cb92146c9a992e44e936693cbbb58385d155f (patch)
tree9b0072876cdfc06c34d010c3b8c721d6075cc67e /tests
parentdb00e4acb158ebe3dc629d9eed758ce73303e318 (diff)
downloadcoreutils-962cb92146c9a992e44e936693cbbb58385d155f.tar.xz
*** empty log message ***
Diffstat (limited to 'tests')
-rwxr-xr-xtests/mkdir/p-18
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/mkdir/p-1 b/tests/mkdir/p-1
index 73d62c38b..dc6fdf6b0 100755
--- a/tests/mkdir/p-1
+++ b/tests/mkdir/p-1
@@ -11,14 +11,14 @@ if test "$VERBOSE" = yes; then
$MKDIR --version
fi
-tmp=$TMPDIR/t-mkdir.$$/a/b/c
-temp_files=$tmp
-rm -rf $temp_files
+temp_dir=$TMPDIR/t-mkdir.$$
+tmp=$temp_dir/a/b/c
+rm -rf $temp_dir
$MKDIR --parents $tmp || fail=1
test -d $tmp || fail=1
-rm -rf $temp_files
+rm -rf $temp_dir
exit $fail