This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
libcdio-osx/parse/test/runall

14 lines
190 B
Plaintext
Raw Normal View History

2003-07-12 00:26:07 +00:00
#!/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");
}