mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
da808ae065
Use single quotes for perl paths, in case of special symbols Double-quoted string literals are subject to backslash and variable substitution.
5 lines
213 B
Perl
5 lines
213 B
Perl
#!/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);
|