stas 01/11/19 19:44:43
Modified: t/directive perlrequire.t
t/filter input_msg.t
Log:
prefix the debug print with #, using t_debug()
Revision Changes Path
1.3 +1 -1 modperl-2.0/t/directive/perlrequire.t
Index: perlrequire.t
===================================================================
RCS file: /home/cvs/modperl-2.0/t/directive/perlrequire.t,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- perlrequire.t 2001/09/18 19:42:14 1.2
+++ perlrequire.t 2001/11/20 03:44:42 1.3
@@ -22,7 +22,7 @@
my $config = Apache::Test::config();
my $hostport = Apache::TestRequest::hostport($config);
- print "connecting to $hostport\n";
+ t_debug("connecting to $hostport");
ok t_cmp($checks{$module},
$config->http_raw_get("/TestDirective::perlrequire", undef),
1.5 +2 -1 modperl-2.0/t/filter/input_msg.t
Index: input_msg.t
===================================================================
RCS file: /home/cvs/modperl-2.0/t/filter/input_msg.t,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- input_msg.t 2001/10/02 13:30:32 1.4
+++ input_msg.t 2001/11/20 03:44:43 1.5
@@ -1,5 +1,6 @@
use Apache::TestRequest ();
use Apache::Test ();
+use Apache::TestUtil;
my $module = 'TestFilter::input_msg';
@@ -8,6 +9,6 @@
my $config = Apache::Test::config();
my $hostport = Apache::TestRequest::hostport($config);
-print "connecting to $hostport\n";
+t_debug("connecting to $hostport");
print $config->http_raw_get("/input_filter.html");