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:
parent
d811d6dbdd
commit
069c5a6835
@ -78,7 +78,7 @@ sub log {
|
|||||||
my ($self, $trace, @log) = @_;
|
my ($self, $trace, @log) = @_;
|
||||||
my $level = Qpsmtpd::TRACE_LEVEL();
|
my $level = Qpsmtpd::TRACE_LEVEL();
|
||||||
$level = $self->init_logger unless defined $level;
|
$level = $self->init_logger unless defined $level;
|
||||||
diag(join(" ", $$, @log)) if $trace <= $level;
|
print("# " . join(" ", $$, @log) . "\n") if $trace <= $level;
|
||||||
}
|
}
|
||||||
|
|
||||||
# sub run
|
# sub run
|
||||||
|
@ -33,7 +33,7 @@ sub run_tests {
|
|||||||
my ($plugin, $qp) = @_;
|
my ($plugin, $qp) = @_;
|
||||||
foreach my $t (@{$plugin->{_tests}}) {
|
foreach my $t (@{$plugin->{_tests}}) {
|
||||||
my $method = $t->{name};
|
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;
|
local $plugin->{_qp} = $qp;
|
||||||
$plugin->$method();
|
$plugin->$method();
|
||||||
}
|
}
|
||||||
|
@ -21,5 +21,5 @@ sub test_returnval {
|
|||||||
|
|
||||||
my ($ret, $note) = $self->rcpt_handler($self->qp->transaction, 'rcpt@example.com');
|
my ($ret, $note) = $self->rcpt_handler($self->qp->transaction, 'rcpt@example.com');
|
||||||
is($ret, DENY, "Check we got a DENY");
|
is($ret, DENY, "Check we got a DENY");
|
||||||
diag("dnsbl result: $note");
|
print("# dnsbl result: $note\n");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user