Wed Nov 9 23:22:16 PST 2005
- Previous message: [Slony1-commit] By cbbrowne: Start adding documentation on the new generation test bed
- Next message: [Slony1-commit] By cbbrowne: Use shell script to generate dropnode slonik so that it can
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Change usage of mktemp on Linux, where it needs .XXXXXXX as a
placeholder for the "random bits"
Modified Files:
--------------
slony1-engine/tests:
run_test.sh (r1.1 -> r1.2)
-------------- next part --------------
Index: run_test.sh
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tests/run_test.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -Ltests/run_test.sh -Ltests/run_test.sh -u -w -r1.1 -r1.2
--- tests/run_test.sh
+++ tests/run_test.sh
@@ -583,6 +583,12 @@
mktmp=$tmpdir/$rstring
fi
;;
+ Linux)
+ mktmp=`mktemp -d -t slony-regress.XXXXXX`
+ if [ ! -d $mktmp ]; then
+ err 3 "mktemp failed"
+ fi
+ ;;
*)
mktmp=`mktemp -d -t slony-regress`
if [ ! -d $mktmp ]; then
- Previous message: [Slony1-commit] By cbbrowne: Start adding documentation on the new generation test bed
- Next message: [Slony1-commit] By cbbrowne: Use shell script to generate dropnode slonik so that it can
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list