[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.cgi
Patrick Jenkins
pjenkins at apple.com
Mon Aug 14 12:20:45 PDT 2006
Changes in directory nightlytest-serverside:
NightlyTestAccept.cgi updated: 1.45 -> 1.46
---
Log message:
Changed around how lists of added and removed tests are created.
---
Diffs of the changes: (+6 -6)
NightlyTestAccept.cgi | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
Index: nightlytest-serverside/NightlyTestAccept.cgi
diff -u nightlytest-serverside/NightlyTestAccept.cgi:1.45 nightlytest-serverside/NightlyTestAccept.cgi:1.46
--- nightlytest-serverside/NightlyTestAccept.cgi:1.45 Mon Aug 14 01:56:59 2006
+++ nightlytest-serverside/NightlyTestAccept.cgi Mon Aug 14 14:20:30 2006
@@ -612,13 +612,13 @@
# the corresponding entry from the previous day. Therefore, we create a
# different list that does not contain these words.
$temp_test_list_today = $all_tests;
-$temp_test_list_today =~ s/PASS//g;
-$temp_test_list_today =~ s/FAIL//g;
-$temp_test_list_today =~ s/XFAIL//g;
+$temp_test_list_today =~ s/PASS\://g;
+$temp_test_list_today =~ s/XFAIL\://g;
+$temp_test_list_today =~ s/FAIL\://g;
$temp_test_list_yesterday = $yesterdays_tests;
-$temp_test_list_yesterday = s/PASS//g;
-$temp_test_list_yesterday = s/FAIL//g;
-$temp_test_list_yesterday = s/XFAIL//g;
+$temp_test_list_yesterday = s/PASS\://g;
+$temp_test_list_yesterday = s/XFAIL\://g;
+$temp_test_list_yesterday = s/FAIL\://g;
if($yesterdays_tests ne ""){
$new_tests = Difference $temp_test_list_today, $temp_test_list_yesterday;
}
More information about the llvm-commits
mailing list