[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.php
Jim Laskey
jlaskey at apple.com
Wed Sep 20 04:05:30 PDT 2006
Changes in directory nightlytest-serverside:
NightlyTestAccept.php updated: 1.55 -> 1.56
---
Log message:
Testing #1
---
Diffs of the changes: (+5 -5)
NightlyTestAccept.php | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.55 nightlytest-serverside/NightlyTestAccept.php:1.56
--- nightlytest-serverside/NightlyTestAccept.php:1.55 Tue Sep 19 16:47:19 2006
+++ nightlytest-serverside/NightlyTestAccept.php Wed Sep 20 06:05:16 2006
@@ -727,19 +727,19 @@
* Adding test results pass/fail/xfail status to database
*
*******************************************************************************/
+print "$all_tests<BR><BR>\n";
$ALL_TESTS = split("\n", $all_tests);
foreach ($ALL_TESTS as $info) {
$subpatterns = array();
if (preg_match("/(TEST-)?(XPASS|PASS|XFAIL|FAIL):\s(.+?)\s(.+)/", $info, $subpatterns)) {
list($ignore1, $ignore2, $result, $measure, $program) = $subpatterns;
+ print "$program, $result, $measure, $night_id<BR>\n";
AddTests($program, $result, $measure, $night_id);
- } else {
- print "Unrecognized test: $info\n";
}
}
if ($print_debug) {
- print "Dejagnu Tests Added\n";
+ print "Program Tests Added\n";
}
foreach ($DEJAGNUTESTS_RESULTS as $info) {
@@ -965,8 +965,8 @@
chdir("$cwd/machines/$machine_id");
WriteFile("$db_date-Build-Log.txt", $build_log);
-WriteFile("$db_date-O-files.txt", $o_file_size);
-WriteFile("$db_date-A-files.txt", $a_file_size);
+// WriteFile("$db_date-O-files.txt", $o_file_size);
+// WriteFile("$db_date-A-files.txt", $a_file_size);
$sentdata="";
foreach ($_GET as $key => $value) {
More information about the llvm-commits
mailing list