Skip to content

Commit 13e7552

Browse files
committed
Merge #288: use a single-use temp name for integration test dir
e3dafb2 use a single-use temp name for integration test dir (z8674558) Pull request description: Closes #287 ACKs for top commit: sanket1729: utACK e3dafb2 apoelstra: ACK e3dafb2 Tree-SHA512: 5c2bf427803370d4a9c6c23dbd2b32500694a5b6d1032252810d97582d7db3c030b4d57dd009b85d59103f4f2433c13235645957b92f370e82f396c376bbd4fc
2 parents 92eda4d + e3dafb2 commit 13e7552

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration_test/run.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22

3-
TESTDIR=/tmp/rust_miniscript_test
3+
RAND_DIR=$(head -c 4 </dev/urandom | xxd -p)
4+
TESTDIR=/tmp/"rust_miniscript_test_$RAND_DIR"
45

56
rm -rf ${TESTDIR}
67
mkdir -p ${TESTDIR}/1

0 commit comments

Comments
 (0)