From: Stephen D. <sd...@us...> - 2005-04-03 06:38:09
|
Update of /cvsroot/naviserver/naviserver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10396 Modified Files: ChangeLog Makefile Log Message: * nsd/nsd.h: * nsd/driver.c: * nsd/tclinit.c: * nsd/nsmain.c: Add -c command line option which causes the server to start in command mode, reading commands from stdin and executing them like a tclsh. * Makefile: * tests/test.nscfg: * tests/all.tcl: Add new Makefile targets test, runtest and gdb which start the server in command mode. Modify the test runner and add a test server config file. * tests/http.test: * tests/ns_addrbyhost.test: * tests/ns_adp_compress.test: * tests/ns_hostbyaddr.test: * tests/ns_hrefs.test: * tests/ns_parseargs.test: Update tests to use tlctest syntax and features. Index: Makefile =================================================================== RCS file: /cvsroot/naviserver/naviserver/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile 13 Mar 2005 02:09:53 -0000 1.3 --- Makefile 3 Apr 2005 06:38:00 -0000 1.4 *************** *** 66,70 **** test: all ! cd tests/new && ./all.tcl clean: --- 66,78 ---- 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 -t tests/test.nscfg ! ! gdb: 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 clean: Index: ChangeLog =================================================================== RCS file: /cvsroot/naviserver/naviserver/ChangeLog,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** ChangeLog 2 Apr 2005 20:31:59 -0000 1.34 --- ChangeLog 3 Apr 2005 06:38:00 -0000 1.35 *************** *** 1,2 **** --- 1,25 ---- + 2005-04-02 Stephen Deasey <sd...@us...> + + * nsd/nsd.h: + * nsd/driver.c: + * nsd/tclinit.c: + * nsd/nsmain.c: Add -c command line option which causes the server + to start in command mode, reading commands from stdin and + executing them like a tclsh. + + * Makefile: + * tests/test.nscfg: + * tests/all.tcl: Add new Makefile targets test, runtest and gdb + which start the server in command mode. Modify the test runner + and add a test server config file. + + * tests/http.test: + * tests/ns_addrbyhost.test: + * tests/ns_adp_compress.test: + * tests/ns_hostbyaddr.test: + * tests/ns_hrefs.test: + * tests/ns_parseargs.test: Update tests to use tlctest syntax and + features. + 2005-04-02 Vlad Seryakov <ser...@us...> |