From: mike Date: Wed, 20 Nov 2002 23:10:17 +0000 (+0000) Subject: Loathesome hacks to skip section 10 explicitly, since CVS keep X-Git-Tag: v1.5~190 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=4b83264af4ba6c1cb101a597fa6d7bb144ab4023;p=cql-java-moved-to-github.git Loathesome hacks to skip section 10 explicitly, since CVS keep 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*! --- diff --git a/test/regression/mkanswers b/test/regression/mkanswers index f027d50..994bad4 100755 --- a/test/regression/mkanswers +++ b/test/regression/mkanswers @@ -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 () { 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>) { diff --git a/test/regression/runtests b/test/regression/runtests index 6703e37..5def86c 100755 --- a/test/regression/runtests +++ b/test/regression/runtests @@ -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 () { my $sdir = $_; s@sections/@@; + next if /^CVS$/ || /^10$/; print "testing section $_ - ", read_file("$sdir/name"), "\n"; while (<$sdir/*.cql>) {