Apparently diag() doesn't do what I thought it did!

git-svn-id: https://svn.perl.org/qpsmtpd/trunk@315 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
Matt Sergeant 2004-09-08 21:53:29 +00:00
parent d811d6dbdd
commit 069c5a6835
3 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ sub log {
my ($self, $trace, @log) = @_;
my $level = Qpsmtpd::TRACE_LEVEL();
$level = $self->init_logger unless defined $level;
diag(join(" ", $$, @log)) if $trace <= $level;
print("# " . join(" ", $$, @log) . "\n") if $trace <= $level;
}
# sub run

View File

@ -33,7 +33,7 @@ sub run_tests {
my ($plugin, $qp) = @_;
foreach my $t (@{$plugin->{_tests}}) {
my $method = $t->{name};
diag "Running $method tests for plugin " . $plugin->plugin_name;
print "# Running $method tests for plugin " . $plugin->plugin_name . "\n";
local $plugin->{_qp} = $qp;
$plugin->$method();
}

View File

@ -21,5 +21,5 @@ sub test_returnval {
my ($ret, $note) = $self->rcpt_handler($self->qp->transaction, 'rcpt@example.com');
is($ret, DENY, "Check we got a DENY");
diag("dnsbl result: $note");
print("# dnsbl result: $note\n");
}