[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.php
Jim Laskey
jlaskey at apple.com
Sat Sep 16 12:19:32 PDT 2006
Changes in directory nightlytest-serverside:
NightlyTestAccept.php updated: 1.48 -> 1.49
---
Log message:
Debugging #2
---
Diffs of the changes: (+0 -3)
NightlyTestAccept.php | 3 ---
1 files changed, 3 deletions(-)
Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.48 nightlytest-serverside/NightlyTestAccept.php:1.49
--- nightlytest-serverside/NightlyTestAccept.php:1.48 Sat Sep 16 14:08:11 2006
+++ nightlytest-serverside/NightlyTestAccept.php Sat Sep 16 14:19:18 2006
@@ -732,8 +732,6 @@
$subpatterns = array();
if (preg_match("/(TEST-)?(XPASS|PASS|XFAIL|FAIL):\s(.+?)\s(.+)/", $info, $subpatterns)) {
list($ignore1, $ignore2, $result, $measure, $program) = $subpatterns;
- print "$ignore1: $ignore2: $result: $measure: $program\n";
-
AddTests($program, $result, $measure, $night_id);
} else {
print "Unrecognized test: $info\n";
@@ -748,7 +746,6 @@
$subpatterns = array();
if (preg_match("/^(XPASS|PASS|XFAIL|FAIL):\s(.+):?/", $info, $subpatterns)) {
list($ignore, $result, $program) = $subpatterns;
- print "$ignore: $result: $program\n";
AddTests($program, $result, "dejagnu", $night_id);
}
}
More information about the llvm-commits
mailing list