[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.php

Jim Laskey jlaskey at apple.com
Sat Sep 16 12:08:25 PDT 2006



Changes in directory nightlytest-serverside:

NightlyTestAccept.php updated: 1.47 -> 1.48
---
Log message:

Debugging #1

---
Diffs of the changes:  (+3 -0)

 NightlyTestAccept.php |    3 +++
 1 files changed, 3 insertions(+)


Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.47 nightlytest-serverside/NightlyTestAccept.php:1.48
--- nightlytest-serverside/NightlyTestAccept.php:1.47	Sat Sep 16 14:05:20 2006
+++ nightlytest-serverside/NightlyTestAccept.php	Sat Sep 16 14:08:11 2006
@@ -732,6 +732,8 @@
   $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";
@@ -746,6 +748,7 @@
   $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