In bisect-runner.pl, run_report_and_exit() now uses run_with_options().
authorNicholas Clark <nick@ccl4.org>
Tue, 31 Jul 2012 13:17:48 +0000 (15:17 +0200)
committerNicholas Clark <nick@ccl4.org>
Tue, 28 May 2013 07:19:29 +0000 (09:19 +0200)
Porting/bisect-runner.pl

index b3963a5..d8172f4 100755 (executable)
@@ -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', "@_");
 }