From: Jan T. <de...@us...> - 2003-05-31 22:43:43
|
Update of /cvsroot/net-script/netscript2/src/tools In directory sc8-pr-cvs1:/tmp/cvs-serv5670/src/tools Modified Files: ipdoc.pl runtests.pl Log Message: * xslt implementation Index: ipdoc.pl =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/ipdoc.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ipdoc.pl 8 Apr 2002 21:48:36 -0000 1.3 --- ipdoc.pl 31 May 2003 22:43:39 -0000 1.4 *************** *** 9,13 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 9,13 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: runtests.pl =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/runtests.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** runtests.pl 5 Feb 2002 00:31:27 -0000 1.2 --- runtests.pl 31 May 2003 22:43:40 -0000 1.3 *************** *** 6,15 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2001 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- ! use Test::Unit::TestRunner; use strict; --- 6,15 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2001 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- ! #use Test::Unit::TestRunner; use strict; *************** *** 21,25 **** $testPackage .= "/"; print "\n Looking for tests in package: $testPackage"; ! my $testrunner = Test::Unit::TestRunner -> new(); opendir(DIR, "$testPackage") || die "\n Testing failed. Cannot open package directory."; $testPackage =~ s/\.\///g; --- 21,25 ---- $testPackage .= "/"; print "\n Looking for tests in package: $testPackage"; ! #my $testrunner = Test::Unit::TestRunner -> new(); opendir(DIR, "$testPackage") || die "\n Testing failed. Cannot open package directory."; $testPackage =~ s/\.\///g; *************** *** 30,34 **** for( @tests ) { print "\n Running Test: $_\n\n"; ! $testrunner -> start( $_ ); } print "\nTests complete.\n" --- 30,34 ---- for( @tests ) { print "\n Running Test: $_\n\n"; ! # $testrunner -> start( $_ ); } print "\nTests complete.\n" |