From: Stephen D. <sd...@us...> - 2005-10-20 23:38:29
|
Update of /cvsroot/naviserver/naviserver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28406 Modified Files: ChangeLog Makefile Log Message: * Makefile: * nsdbtest/Makefile: * nsdbtest/nsdbtest.c: * tests/test.nscfg: * tests/nsdb.test: Implement a simple nsdb driver for testing and add the beginnings of some tests. Index: ChangeLog =================================================================== RCS file: /cvsroot/naviserver/naviserver/ChangeLog,v retrieving revision 1.224 retrieving revision 1.225 diff -C2 -d -r1.224 -r1.225 *** ChangeLog 20 Oct 2005 18:30:41 -0000 1.224 --- ChangeLog 20 Oct 2005 23:38:15 -0000 1.225 *************** *** 1,2 **** --- 1,11 ---- + 2005-10-20 Stephen Deasey <sd...@us...> + + * Makefile: + * nsdbtest/Makefile: + * nsdbtest/nsdbtest.c: + * tests/test.nscfg: + * tests/nsdb.test: Implement a simple nsdb driver for testing and + add the beginnings of some tests. + 2005-10-20 Vlad Seryakov <ser...@us...> Index: Makefile =================================================================== RCS file: /cvsroot/naviserver/naviserver/Makefile,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Makefile 16 Oct 2005 08:38:29 -0000 1.15 --- Makefile 20 Oct 2005 23:38:15 -0000 1.16 *************** *** 34,38 **** include include/Makefile.global ! dirs = nsthread nsd nssock nscgi nscp nslog nsperm nsdb distfiles = $(dirs) doc tcl include tests win32 *.tcl configure m4 \ --- 34,38 ---- include include/Makefile.global ! dirs = nsthread nsd nssock nscgi nscp nslog nsperm nsdb nsdbtest distfiles = $(dirs) doc tcl include tests win32 *.tcl configure m4 \ *************** *** 69,85 **** test: all ! LD_LIBRARY_PATH="./nsd:./nsthread" ./nsd/nsd -c -d -t tests/test.nscfg all.tcl $(TESTFLAGS) $(TCLTESTARGS) runtest: all ! LD_LIBRARY_PATH="./nsd:./nsthread" ./nsd/nsd -c -d -t tests/test.nscfg gdbtest: all @echo "set args -c -d -t tests/test.nscfg all.tcl $(TESTFLAGS) $(TCLTESTARGS)" > gdb.run ! LD_LIBRARY_PATH="./nsd:./nsthread" gdb -x gdb.run ./nsd/nsd rm gdb.run gdbruntest: all @echo "set args -c -d -t tests/test.nscfg" > gdb.run ! LD_LIBRARY_PATH="./nsd:./nsthread" gdb -x gdb.run ./nsd/nsd rm gdb.run --- 69,85 ---- test: all ! LD_LIBRARY_PATH="./nsd:./nsthread:../nsdb" ./nsd/nsd -c -d -t tests/test.nscfg all.tcl $(TESTFLAGS) $(TCLTESTARGS) runtest: all ! LD_LIBRARY_PATH="./nsd:./nsthread:../nsdb" ./nsd/nsd -c -d -t tests/test.nscfg gdbtest: all @echo "set args -c -d -t tests/test.nscfg all.tcl $(TESTFLAGS) $(TCLTESTARGS)" > gdb.run ! LD_LIBRARY_PATH="./nsd:./nsthread:../nsdb" gdb -x gdb.run ./nsd/nsd rm gdb.run gdbruntest: all @echo "set args -c -d -t tests/test.nscfg" > gdb.run ! LD_LIBRARY_PATH="./nsd:./nsthread:../nsdb" gdb -x gdb.run ./nsd/nsd rm gdb.run |