mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
MTR: fix broken logic for ignoring missing ctest in Pushbuild
This commit is contained in:
parent
6f33e36e23
commit
1f3994fac6
1 changed files with 1 additions and 1 deletions
|
@ -5998,7 +5998,7 @@ sub run_ctest() {
|
|||
# Special override: also ignore in Pushbuild, some platforms may not have it
|
||||
# Now, run ctest and collect output
|
||||
my $ctest_out= `ctest $ctest_vs 2>&1`;
|
||||
if ($? == $no_ctest && $opt_ctest == -1 && ! defined $ENV{PB2WORKDIR}) {
|
||||
if ($? == $no_ctest && ($opt_ctest == -1 || defined $ENV{PB2WORKDIR})) {
|
||||
chdir($olddir);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue