[llvm-commits] CVS: reopt/test/TTFTestHarness.pl
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Sep 8 14:35:21 PDT 2004
Changes in directory reopt/test:
TTFTestHarness.pl updated: 1.3 -> 1.4
---
Log message:
add brief usage note
---
Diffs of the changes: (+6 -2)
Index: reopt/test/TTFTestHarness.pl
diff -u reopt/test/TTFTestHarness.pl:1.3 reopt/test/TTFTestHarness.pl:1.4
--- reopt/test/TTFTestHarness.pl:1.3 Mon Aug 16 14:24:17 2004
+++ reopt/test/TTFTestHarness.pl Wed Sep 8 16:35:11 2004
@@ -1,4 +1,7 @@
#!/usr/bin/perl
+# To use this script, change to the TTFTestCases directory and run it:
+# % perl ../TTFTestHarness.pl
+#
print "looking for ttftest\n";
if ( -x "../../tools/Debug/ttftest" ) { $TTFTEST = "../../tools/Debug/ttftest"; }
@@ -76,8 +79,9 @@
}
my @tests = @ARGV;
if ($#tests == -1) {
- #@tests = <*.ll>;
- @tests = <*.bc>;
+ @lltests = <*.ll>;
+ @bctests = <*.bc>;
+ @tests = (@lltests, @bctests);
}
my ($ntests, $fail) = (0, 0);
foreach my $test (@tests) {
More information about the llvm-commits
mailing list