CVS commit: othersrc/external/bsd/threshold/threshold

2014-06-24 Thread Alistair G. Crooks
Module Name:othersrc
Committed By:   agc
Date:   Tue Jun 24 07:04:27 UTC 2014

Modified Files:
othersrc/external/bsd/threshold/threshold: Makefile

Log Message:
use the library just built when running regression tests locally


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 othersrc/external/bsd/threshold/threshold/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: othersrc/external/bsd/threshold/threshold/Makefile
diff -u othersrc/external/bsd/threshold/threshold/Makefile:1.2 othersrc/external/bsd/threshold/threshold/Makefile:1.3
--- othersrc/external/bsd/threshold/threshold/Makefile:1.2	Sun Sep 18 18:48:23 2011
+++ othersrc/external/bsd/threshold/threshold/Makefile	Tue Jun 24 07:04:27 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2011/09/18 18:48:23 agc Exp $
+# $NetBSD: Makefile,v 1.3 2014/06/24 07:04:27 agc Exp $
 
 .include bsd.own.mk
 
@@ -24,16 +24,16 @@ EXTDIST=${.CURDIR}/../dist
 
 t test tst: $(PROG)
 	cp /etc/group origfile
-	./${PROG} -t 3/10 origfile
+	env LD_LIBRARY_PATH=${LIBTHRESHOLDDIR} ./${PROG} -t 3/10 origfile
 	ls -al origfile.split*
-	./${PROG} -j -o origfile.recons origfile.split4 origfile.split2 origfile.split3  
+	env LD_LIBRARY_PATH=${LIBTHRESHOLDDIR} ./${PROG} -j -o origfile.recons origfile.split4 origfile.split2 origfile.split3  
 	diff origfile origfile.recons
-	./${PROG} -t 3/10  origfile
+	env LD_LIBRARY_PATH=${LIBTHRESHOLDDIR} ./${PROG} -t 3/10  origfile
 	ls -al threshold.split*
-	./${PROG} -j -o origfile.mem threshold.split1 threshold.split2 threshold.split3  
+	env LD_LIBRARY_PATH=${LIBTHRESHOLDDIR} ./${PROG} -j -o origfile.mem threshold.split1 threshold.split2 threshold.split3  
 	-diff origfile origfile.mem
 	rm threshold.*
-	./${PROG} -t 3/10 -i
+	env LD_LIBRARY_PATH=${LIBTHRESHOLDDIR} ./${PROG} -t 3/10 -i
 	ls -al threshold.split*
-	./${PROG} -j threshold.split4 threshold.split2 threshold.split3  
+	env LD_LIBRARY_PATH=${LIBTHRESHOLDDIR} ./${PROG} -j threshold.split4 threshold.split2 threshold.split3  
 	rm -f origfile.recons origfile.split* origfile origfile.mem threshold.*



CVS commit: othersrc/external/bsd/threshold/threshold

2011-09-18 Thread Alistair G. Crooks
Module Name:othersrc
Committed By:   agc
Date:   Sun Sep 18 18:48:24 UTC 2011

Modified Files:
othersrc/external/bsd/threshold/threshold: Makefile

Log Message:
catch up with new calling conventions


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
othersrc/external/bsd/threshold/threshold/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: othersrc/external/bsd/threshold/threshold/Makefile
diff -u othersrc/external/bsd/threshold/threshold/Makefile:1.1.1.1 othersrc/external/bsd/threshold/threshold/Makefile:1.2
--- othersrc/external/bsd/threshold/threshold/Makefile:1.1.1.1	Sat Mar 12 08:13:11 2011
+++ othersrc/external/bsd/threshold/threshold/Makefile	Sun Sep 18 18:48:23 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2011/03/12 08:13:11 agc Exp $
+# $NetBSD: Makefile,v 1.2 2011/09/18 18:48:23 agc Exp $
 
 .include bsd.own.mk
 
@@ -24,16 +24,16 @@
 
 t test tst: $(PROG)
 	cp /etc/group origfile
-	./${PROG} -s 10 -t 3 origfile
-	ls -al origfile.0*
-	./${PROG} -j -o origfile.recons origfile.004 origfile.002 origfile.003  
+	./${PROG} -t 3/10 origfile
+	ls -al origfile.split*
+	./${PROG} -j -o origfile.recons origfile.split4 origfile.split2 origfile.split3  
 	diff origfile origfile.recons
-	./${PROG} -s 3/10  origfile
-	ls -al memory.0*
-	./${PROG} -j -o origfile.mem memory.001 memory.002 memory.003  
+	./${PROG} -t 3/10  origfile
+	ls -al threshold.split*
+	./${PROG} -j -o origfile.mem threshold.split1 threshold.split2 threshold.split3  
 	-diff origfile origfile.mem
-	rm memory.*
+	rm threshold.*
 	./${PROG} -t 3/10 -i
-	ls -al memory.0*
-	./${PROG} -j memory.004 memory.002 memory.003  
-	rm -f origfile.recons origfile.0* origfile origfile.mem memory.*
+	ls -al threshold.split*
+	./${PROG} -j threshold.split4 threshold.split2 threshold.split3  
+	rm -f origfile.recons origfile.split* origfile origfile.mem threshold.*