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:
3e5d884
)
Re: Change 29723 breaks t/op/inccode-tie.t on Win32
author
Nicholas Clark
<nick@ccl4.org>
Tue, 9 Jan 2007 12:31:17 +0000
(12:31 +0000)
committer
Steve Hay
<SteveHay@planit.com>
Tue, 9 Jan 2007 12:44:15 +0000
(12:44 +0000)
Message-ID: <
20070109123116
.GC30742@plum.flirble.org>
p4raw-id: //depot/perl@29734
t/op/inccode-tie.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/inccode-tie.t
b/t/op/inccode-tie.t
index
7f11004
..
5bbcc10
100644
(file)
--- a/
t/op/inccode-tie.t
+++ b/
t/op/inccode-tie.t
@@
-8,7
+8,7
@@
tie @INC, 'Tie::StdArray';
@INC = @orig_INC;
for my $file ('./op/inccode.t', './t/op/inccode.t', ':op:inccode.t') {
if (-r $file) {
- do $file
or die
$@;
+ do $file
; die $@ if
$@;
exit;
}
}