summaryrefslogtreecommitdiff
path: root/Porting/bisect-runner.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2012-07-31 15:17:48 +0200
committerNicholas Clark <nick@ccl4.org>2013-05-28 09:19:29 +0200
commit61ae9994ad9d74eebddeccc7412cbf253fba014b (patch)
tree223ae98e79acdfb73e9dd6e3bc8cf1b21c2b8edf /Porting/bisect-runner.pl
parent12641c3bc3b66b6b08b7feeca89a7cc24aa0fe9c (diff)
downloadperl-61ae9994ad9d74eebddeccc7412cbf253fba014b.tar.gz
In bisect-runner.pl, run_report_and_exit() now uses run_with_options().
Diffstat (limited to 'Porting/bisect-runner.pl')
-rwxr-xr-xPorting/bisect-runner.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl
index b3963a563b..d8172f40c3 100755
--- a/Porting/bisect-runner.pl
+++ b/Porting/bisect-runner.pl
@@ -1003,7 +1003,7 @@ sub report_and_exit {
}
sub run_report_and_exit {
- my $ret = system @_;
+ my $ret = run_with_options(undef, @_);
report_and_exit(!$ret, 'zero exit from', 'non-zero exit from', "@_");
}