X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=test%2Fregression%2Fruntests;h=070a9215fd40af18a5ce49f657d6eebd34876b60;hb=5ec1bd19b223ae4980d46c737bb20af68ef17e8f;hp=008c27111ee6533c13d09422612bd9b02af6f48d;hpb=4250c5646892a777e3a0b476fa3237b8f6503aeb;p=cql-java-moved-to-github.git diff --git a/test/regression/runtests b/test/regression/runtests index 008c271..070a921 100755 --- a/test/regression/runtests +++ b/test/regression/runtests @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: runtests,v 1.9 2007-06-21 10:10:32 mike Exp $ +# $Id: runtests,v 1.10 2007-06-21 14:54:32 mike Exp $ use IO::File; use strict; @@ -28,11 +28,12 @@ while () { my $afile = $qfile; $afile =~ s/\.cql$/.xcql/; print " query $_ - $query "; - my $correct = read_file("$norman < $afile |"); - my $tested = read_file("$compiler < $qfile | $norman |") - or print "\n *** test compiler exited non-zero\n"; $ntests++; - if ($tested eq $correct) { + my $correct = read_file("$norman < $afile |"); + my $tested = read_file("$compiler < $qfile | $norman |"); + if (!$tested) { + print "\n *** test compiler exited non-zero\n"; + } elsif ($tested eq $correct) { print "OK\n"; $ncorrect++; } else {