mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
5 lines
212 B
Text
5 lines
212 B
Text
|
#!/usr/bin/perl
|
||
|
# Call mtr in out-of-source build
|
||
|
$ENV{MTR_BINDIR} = "@CMAKE_BINARY_DIR@";
|
||
|
chdir("@CMAKE_SOURCE_DIR@/mysql-test");
|
||
|
exit(system($^X, "@CMAKE_SOURCE_DIR@/mysql-test/mysql-test-run.pl", @ARGV) >> 8);
|