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:
71d8063
)
bisect-runner.pl should check for t/perl when building test_prep.
author
Nicholas Clark
<nick@ccl4.org>
Mon, 3 Oct 2011 17:49:18 +0000
(19:49 +0200)
committer
Nicholas Clark
<nick@ccl4.org>
Mon, 3 Oct 2011 17:49:18 +0000
(19:49 +0200)
Checking for perl doesn't spot the cases where make aborts after perl is
built but before test_prep is completed.
Porting/bisect-runner.pl
patch
|
blob
|
blame
|
history
diff --git
a/Porting/bisect-runner.pl
b/Porting/bisect-runner.pl
index
57e1d91
..
a27f44c
100755
(executable)
--- a/
Porting/bisect-runner.pl
+++ b/
Porting/bisect-runner.pl
@@
-720,7
+720,7
@@
if ($target ne 'miniperl') {
system "make $j $target";
}
-my $expected = $target =~ /^test/ ? 'perl' : $target;
+my $expected = $target =~ /^test/ ? '
t/
perl' : $target;
my $missing_target = $expected =~ /perl$/ ? !-x $expected : !-r $expected;
if ($options{'test-build'}) {