mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
fix mysql-test unit suite to work for out-of-source builds
This commit is contained in:
parent
3c422e60bb
commit
8599f16b9d
1 changed files with 3 additions and 2 deletions
|
@ -37,10 +37,11 @@ sub start_test {
|
|||
}
|
||||
|
||||
{
|
||||
my $bin=$ENV{MTR_BINDIR} || '..';
|
||||
return "Not run for embedded server" if $::opt_embedded_server;
|
||||
return "Not configured to run ctest" unless -f "../CTestTestfile.cmake";
|
||||
return "Not configured to run ctest" unless -f "$bin/CTestTestfile.cmake";
|
||||
my ($ctest_vs)= $opt_vs_config ? "--build-config $opt_vs_config" : "";
|
||||
my (@ctest_list)= `cd .. && ctest $opt_vs_config --show-only --verbose`;
|
||||
my (@ctest_list)= `cd "$bin" && ctest $opt_vs_config --show-only --verbose`;
|
||||
return "No ctest" if $?;
|
||||
|
||||
my ($command, %tests, $prefix);
|
||||
|
|
Loading…
Reference in a new issue