This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39bca86
)
Ensure new arg to watchdog() in t/test.pl gets initialized
author
Jerry D. Hedden
<jdhedden@cpan.org>
Mon, 5 Jul 2010 18:50:04 +0000
(14:50 -0400)
committer
Rafael Garcia-Suarez
<rgs@consttype.org>
Mon, 5 Jul 2010 20:41:59 +0000
(22:41 +0200)
t/test.pl
patch
|
blob
|
blame
|
history
diff --git
a/t/test.pl
b/t/test.pl
index
c43c275
..
2bf429c
100755
(executable)
--- a/
t/test.pl
+++ b/
t/test.pl
@@
-812,7
+812,7
@@
WHOA
sub watchdog ($;$)
{
my $timeout = shift;
- my $method = shift;
+ my $method = shift
|| ""
;
my $timeout_msg = 'Test process timed out - terminating';
# Valgrind slows perl way down so give it more time before dying.