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.*

Reply via email to