projects
/
perl.git
/ commitdiff
free
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
b611509
)
podcheck.t: Return success/failure from ok()
author
Karl Williamson <public@khwilliamson.com>
Wed, 26 Sep 2012 17:19:20 +0000 (11:19 -0600)
committer
Karl Williamson <public@khwilliamson.com>
Wed, 26 Sep 2012 17:51:14 +0000 (11:51 -0600)
This program has a private version of ok() to avoid messages that would
come from the standard one that would confuse things in these tests.
It did not return true/false prior to this commit
t/porting/podcheck.t
patch
|
blob
|
blame
|
history
diff --git
a/t/porting/podcheck.t
b/t/porting/podcheck.t
index
5e1d019
..
cc71bda
100644
(file)
--- a/
t/porting/podcheck.t
+++ b/
t/porting/podcheck.t
@@
-472,7
+472,7
@@
sub suppressed {
$current_test++;
print "not " unless $success;
print "ok $current_test - $message\n";
- return;
+ return $success;
}
sub skip {