X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;ds=sidebyside;f=test%2Fregression%2Fmkanswers;h=f027d50cc96de8b7cf014cd1d3850e5fb445720f;hb=6630927f100a70aa606cb5d117d67ab50038fa2b;hp=fe5dd35bd95392340eab966a44976ef83c2b4810;hpb=d21a7e36240fa3c62810f081a94d9103820bcc74;p=cql-java-moved-to-github.git diff --git a/test/regression/mkanswers b/test/regression/mkanswers index fe5dd35..f027d50 100755 --- a/test/regression/mkanswers +++ b/test/regression/mkanswers @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: mkanswers,v 1.2 2002-11-03 17:02:48 mike Exp $ +# $Id: mkanswers,v 1.3 2002-11-20 22:50:45 mike Exp $ use IO::File; use strict; @@ -14,6 +14,7 @@ my $compiler = $ARGV[0]; while () { my $sdir = $_; s@sections/@@; + next if /^CVS$/; print "answering section $_ - ", read_file("$sdir/name"), "\n"; while (<$sdir/*.cql>) { @@ -22,7 +23,7 @@ while () { my $query = read_file($qfile); my $afile = $qfile; $afile =~ s/\.cql$/.xcql/; - print " query $_ - $query\n"; + print " wrote $_ - $query\n"; my $fh = new IO::File("| $compiler > $afile") or die "can't run compiler '$compiler': $!"; print $fh $query;