summaryrefslogtreecommitdiffstats
path: root/tests/bugs
diff options
context:
space:
mode:
authorEmmanuel Dreyfus <manu@netbsd.org>2014-08-08 05:39:38 +0200
committerHarshavardhana <harsha@harshavardhana.net>2014-08-20 13:46:44 -0700
commit33be39b42f3b9b0505f83a509ff87d416e106158 (patch)
tree94facdd61792f0677898927cd0bcbfe30f0c8084 /tests/bugs
parenta521fc1d22db5477552c0fabc1f918b43caa50c3 (diff)
Regression test portability: mktemp
Linux mktemp accepts to run without a template, NetBSD mandates it. Since the template option has the same syntax, add it everywhere. While there, also do this in scripts outside of regression testing. BUG: 764655 Change-Id: I3ec140afbc9009257c81a56d77afcc21fef74cc4 Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org> Reviewed-on: http://review.gluster.org/8432 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Harshavardhana <harsha@harshavardhana.net> Tested-by: Harshavardhana <harsha@harshavardhana.net>
Diffstat (limited to 'tests/bugs')
-rw-r--r--tests/bugs/bug-1110917.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs/bug-1110917.t b/tests/bugs/bug-1110917.t
index 927b2342192..4b67293a2c0 100644
--- a/tests/bugs/bug-1110917.t
+++ b/tests/bugs/bug-1110917.t
@@ -17,7 +17,7 @@ TEST $CLI volume set $V0 changelog on
TEST $CLI volume set $V0 changelog.fsync-interval 1
# perform I/O on the background
-f=$(basename `mktemp`)
+f=$(basename `mktemp -t ${0##*/}.XXXXXX`)
dd if=/dev/urandom of=$M0/$f count=100000 bs=4k &
# this is the best we can do without inducing _error points_ in the code