summaryrefslogtreecommitdiff
path: root/tests/glob1.sub
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2018-05-22 16:51:07 -0400
committerChet Ramey <chet.ramey@case.edu>2018-05-22 16:51:07 -0400
commit9a51695bed07d37086c352372ac69d0a30039a6b (patch)
tree4d0f57cba0dd1ec7a75aae56e18cfe9997d0b7a7 /tests/glob1.sub
parent7de27456f6494f5f9c11ea1c19024d0024f31112 (diff)
downloadbash-5.0-alpha.tar.gz
bash-5.0-alpha releasebash-5.0-alpha
Diffstat (limited to 'tests/glob1.sub')
-rw-r--r--tests/glob1.sub7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/glob1.sub b/tests/glob1.sub
index 8745cd99..6b3b8ad1 100644
--- a/tests/glob1.sub
+++ b/tests/glob1.sub
@@ -1,7 +1,10 @@
# bash-2.01.1 failed this test
-FN=/tmp/bash-glob.$$
+: ${TMPDIR:=/var/tmp}
+
+FN=$TMPDIR/bash-glob.$$
mkdir $FN
cd $FN
+
mkdir foo
mkdir foobar
touch foo/bar
@@ -10,5 +13,5 @@ chmod 311 foo foobar
echo f*/bar
chmod 777 foo foobar
-cd /
+cd $OLDPWD
rm -rf $FN