Tue Mar 7 14:45:58 PST 2006
- Previous message: [Slony1-commit] By cbbrowne: Add in README.Unicode that warns of Unicode issues between
- Next message: [Slony1-commit] By darcyb: Multi purpose commit, though 1 was needed for the other.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Add MY_MKTEMP_IS_DECREPIT option to run_test.sh
Modified Files:
--------------
slony1-engine/doc/adminguide:
testbed.sgml (r1.6 -> r1.7)
slony1-engine/tests:
run_test.sh (r1.8 -> r1.9)
-------------- next part --------------
Index: testbed.sgml
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/doc/adminguide/testbed.sgml,v
retrieving revision 1.6
retrieving revision 1.7
diff -Ldoc/adminguide/testbed.sgml -Ldoc/adminguide/testbed.sgml -u -w -r1.6 -r1.7
--- doc/adminguide/testbed.sgml
+++ doc/adminguide/testbed.sgml
@@ -95,6 +95,16 @@
</glossentry>
+<glossentry>
+<glossterm><envar>MY_MKTEMP_IS_DECREPIT</envar></glossterm>
+
+<glossdef><para> If your version of Linux uses a variation of
+<application>mktemp</application> that does not generate a full path
+to the location of the desired temporary file/directory, then set this
+value. </para></glossdef>
+
+</glossentry>
+
</glosslist>
</sect1>
Index: run_test.sh
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tests/run_test.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -Ltests/run_test.sh -Ltests/run_test.sh -u -w -r1.8 -r1.9
--- tests/run_test.sh
+++ tests/run_test.sh
@@ -623,6 +623,9 @@
;;
Linux)
mktmp=`mktemp -d -t slony-regress.XXXXXX`
+ if [ $MY_MKTEMP_IS_DECREPIT ] ; then
+ mktmp=`mktemp -d /tmp/slony-regress.XXXXXX`
+ fi
if [ ! -d $mktmp ]; then
err 3 "mktemp failed"
fi
- Previous message: [Slony1-commit] By cbbrowne: Add in README.Unicode that warns of Unicode issues between
- Next message: [Slony1-commit] By darcyb: Multi purpose commit, though 1 was needed for the other.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list