*** empty log message ***
[cql-java-moved-to-github.git] / test / regression / runtests
1 #!/usr/bin/perl -w
2
3 # $Id: runtests,v 1.3 2002-11-06 22:03:58 mike Exp $
4
5 use IO::File;
6 use strict;
7
8 if (@ARGV != 2) {
9     print STDERR "Usage: $0 <CQL-compiler> <XML-normaliser>\n";
10     exit(1);
11 }
12 my $compiler = $ARGV[0];
13 my $norman = $ARGV[1];
14
15 while (<sections/*>) {
16     my $sdir = $_;
17     s@sections/@@;
18     print "testing section $_ - ", read_file("$sdir/name"), "\n";
19
20     while (<$sdir/*.cql>) {
21         my $qfile = $_;
22         s@sections/([0-9]+/.*)\.cql@$1@;
23         my $query = read_file($qfile);
24         my $afile = $qfile;
25         $afile =~ s/\.cql$/.xcql/;
26         print "  query $_ - $query\n";
27         my $correct = read_file("$norman < $afile |");
28         my $tested = read_file("$compiler < $qfile | $norman |")
29             or die "can't run test compiler '$compiler | $norman': $!";
30         if ($tested ne $correct) {
31             print "    *** different XCQL output\n";
32             print "=== correct ===\n$correct";
33             print "=== tested ===\n$tested";
34         }
35     }
36 }
37
38 sub read_file {
39     my($name) = @_;
40
41     $name = "<$name" if $name !~ /\|$/;
42     my $fh = new IO::File("$name")
43         or die "can't read '$name': $!";
44     my $contents = join('', <$fh>);
45     $fh->close();
46     return $contents;
47 }