summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-12-10 19:26:51 +0000
committerMaxime Coste <frrrwww@gmail.com>2014-12-10 19:33:09 +0000
commitea063fd2ef7a81ae089e6c9951f15aec01febbc5 (patch)
tree41f3020bf5ecbc7a4d79d6dc2e8156875110cfeb /test
parent319cfcda34ee202a2e9d41d599664890c8694840 (diff)
Fix use of mktemp in test script
Diffstat (limited to 'test')
-rwxr-xr-xtest/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run b/test/run
index d42c8ac9..137db66d 100755
--- a/test/run
+++ b/test/run
@@ -7,7 +7,7 @@ main() {
number_failures=0
dirs="$@"
test=$(pwd)
- work=$(mktemp -d)
+ work=$(mktemp -d /tmp/kak-tests.XXXXXXXX)
cp -R . $work
trap "rm -R $work" EXIT
for dir in $(find $dirs -type d); do