First commit after CVS conversion. Should be just administrative changes.

This commit is contained in:
R. Bernstein
2008-11-29 00:56:26 -05:00
parent 4ea407f746
commit 95f087cdc3
413 changed files with 86786 additions and 86 deletions

13
parse/test/runall Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/perl -w
use strict;
my @tests;
if (@ARGV) {
@tests = @ARGV;
} else {
@tests=qw(t1.cue t2.cue t3.cue);
}
foreach my $cue_file (@tests) {
system("../cueparser $cue_file");
}