jwoolley 01/11/12 00:17:14
Modified: perl-framework/t/apache limits.t
Log:
It'd be good to have the statement saying what's going on come before the
actual call to GET so that we can tell what's really happening in case
the server doesn't respond in a sane manner.
Revision Changes Path
1.9 +2 -2 httpd-test/perl-framework/t/apache/limits.t
Index: limits.t
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/t/apache/limits.t,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -u -r1.8 -r1.9
--- limits.t 2001/11/09 12:21:09 1.8
+++ limits.t 2001/11/12 08:17:14 1.9
@@ -130,9 +130,9 @@
}
}
elsif ($cond eq 'fieldsize') {
+ print "# Testing LimitRequestFieldSize; should $goodbad\n";
$resp = GET('/limits/', 'X-Subtest' => $testnum,
'X-overflow-field' => $param);
- print "# Testing LimitRequestFieldSize; should $goodbad\n";
ok t_cmp($expected_rc,
$resp->code,
"Test #$testnum");
@@ -142,8 +142,8 @@
$testnum++;
}
elsif ($cond eq 'requestline') {
- $resp = GET($param, 'X-Subtest' => $testnum);
print "# Testing LimitRequestLine; should $goodbad\n";
+ $resp = GET($param, 'X-Subtest' => $testnum);
ok t_cmp($expected_rc,
$resp->code,
"Test #$testnum");