[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.php
Jim Laskey
jlaskey at apple.com
Thu Sep 14 03:57:52 PDT 2006
Changes in directory nightlytest-serverside:
NightlyTestAccept.php updated: 1.3 -> 1.4
---
Log message:
testing #3
---
Diffs of the changes: (+5 -3)
NightlyTestAccept.php | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.3 nightlytest-serverside/NightlyTestAccept.php:1.4
--- nightlytest-serverside/NightlyTestAccept.php:1.3 Thu Sep 14 05:50:06 2006
+++ nightlytest-serverside/NightlyTestAccept.php Thu Sep 14 05:57:38 2006
@@ -15,7 +15,7 @@
*******************************************************************************/
print "content-type: text/text\r\n\r\n";
-$print_env = 1;
+$print_env = 0;
if ($print_env) {
foreach ($_ENV as $key => $value) {
@@ -42,6 +42,7 @@
print "_FILES $key => $value<br>\n";
}
+ // Same as _POST
foreach ($_REQUEST as $key => $value) {
print "_REQUEST $key => $value<br>\n";
}
@@ -546,6 +547,8 @@
$warnings = $_POST['warnings'];
$lines_of_code = $_POST['lines_of_code'];
+print "HERE I AM\n";
+
/*******************************************************************************
*
* Extracting the machine information
@@ -667,8 +670,7 @@
*******************************************************************************/
UpdateCodeInfo($db_date, $loc, $filesincvs, $dirsincvs);
-// print "received ${_POST['CONTENT_LENGTH']} bytes\n";
-print "received 0 bytes\n";
+print "received ${_SERVER['CONTENT_LENGTH']} bytes\n";
$nights = GetMachineNights($machine_id);
$length = count($nights);
More information about the llvm-commits
mailing list