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

Patrick Jenkins pjenkins at apple.com
Fri Aug 18 14:29:01 PDT 2006



Changes in directory nightlytest-serverside:

NightlyTestAccept.cgi updated: 1.49 -> 1.50
---
Log message:

Tacked on 8 lines at the end to print out and keep a record of what
test machines are sending us. this will be useful in diagnosing what is 
happing on their ends.




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

 NightlyTestAccept.cgi |    9 +++++++++
 1 files changed, 9 insertions(+)


Index: nightlytest-serverside/NightlyTestAccept.cgi
diff -u nightlytest-serverside/NightlyTestAccept.cgi:1.49 nightlytest-serverside/NightlyTestAccept.cgi:1.50
--- nightlytest-serverside/NightlyTestAccept.cgi:1.49	Fri Aug 18 13:02:45 2006
+++ nightlytest-serverside/NightlyTestAccept.cgi	Fri Aug 18 16:28:37 2006
@@ -892,3 +892,12 @@
 WriteFile "$build_file", $build_log;
 WriteFile "$o_file", $o_file_size;
 WriteFile "$a_file", $a_file_size;
+
+$sentdata="";
+ at param_names = param();
+foreach my $x (@param_names){
+	my $value=param($x);
+	$sentdata.="$x  =>  $value}\n";
+}
+my $sent_file = "$db_date-senddata.txt";
+WriteFile "$sentdata", $sent_file;






More information about the llvm-commits mailing list