Loathesome hacks to skip section 10 explicitly, since CVS keep
authormike <mike>
Wed, 20 Nov 2002 23:10:17 +0000 (23:10 +0000)
committermike <mike>
Wed, 20 Nov 2002 23:10:17 +0000 (23:10 +0000)
popping the empty directory back up again, no matter how much
"cvs rm 10; rm -rf 10" and removing the "10" line from CVS/Entries
I do.  Die, damn you, *DIE*!

test/regression/mkanswers
test/regression/runtests

index f027d50..994bad4 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
-# $Id: mkanswers,v 1.3 2002-11-20 22:50:45 mike Exp $
+# $Id: mkanswers,v 1.4 2002-11-20 23:10:17 mike Exp $
 
 use IO::File;
 use strict;
@@ -14,7 +14,7 @@ my $compiler = $ARGV[0];
 while (<sections/*>) {
     my $sdir = $_;
     s@sections/@@;
-    next if /^CVS$/;
+    next if /^CVS$/ || /^10$/; # I _can't_ get CVS to stop extracting "10"
     print "answering section $_ - ", read_file("$sdir/name"), "\n";
 
     while (<$sdir/*.cql>) {
index 6703e37..5def86c 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
-# $Id: runtests,v 1.5 2002-11-20 17:55:46 mike Exp $
+# $Id: runtests,v 1.6 2002-11-20 23:10:17 mike Exp $
 
 use IO::File;
 use strict;
@@ -15,6 +15,7 @@ my $norman = $ARGV[1];
 while (<sections/*>) {
     my $sdir = $_;
     s@sections/@@;
+    next if /^CVS$/ || /^10$/;
     print "testing section $_ - ", read_file("$sdir/name"), "\n";
 
     while (<$sdir/*.cql>) {