projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
68814ba
)
Cap the exit code of the bisecting script
Vincent Pit [Fri, 23 Oct 2009 20:34:04 +0000 (22:34 +0200)]
Segfaults cause $? to be set to 139 on my machine, which stops the bisect
process.
pod/perlrepository.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlrepository.pod
b/pod/perlrepository.pod
index
2924b39
..
a72be28
100644
(file)
--- a/
pod/perlrepository.pod
+++ b/
pod/perlrepository.pod
@@
-565,6
+565,7
@@
testcase:
[ -x ./perl ] || exit 125
./perl -Ilib ~/testcase.pl
ret=$?
+ [ $ret -gt 127 ] && ret=127
git clean -dxf
exit $ret