Commit d8100a7c authored by Bjorn Munch's avatar Bjorn Munch

mtr: ignore not finding ctest if in PB2

parent 90e2eecc
...@@ -5684,9 +5684,10 @@ sub run_ctest() { ...@@ -5684,9 +5684,10 @@ sub run_ctest() {
$ctest_vs= "-C $opt_vs_config" if $opt_vs_config; $ctest_vs= "-C $opt_vs_config" if $opt_vs_config;
# Also silently ignore if we don't have ctest and didn't insist # Also silently ignore if we don't have ctest and didn't insist
# Special override: also ignore in Pushbuild, some platforms may not have it
# Now, run ctest and collect output # Now, run ctest and collect output
my $ctest_out= `ctest $ctest_vs 2>&1`; my $ctest_out= `ctest $ctest_vs 2>&1`;
if ($? == $no_ctest && $opt_ctest == -1) { if ($? == $no_ctest && $opt_ctest == -1 && ! defined $ENV{PB2WORKDIR}) {
chdir($olddir); chdir($olddir);
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment