Commit 3b052f81 authored by Sergei Golubchik's avatar Sergei Golubchik

don't use *.in for test data

because INSTALL_MYSQL_TEST() cmake macro has

      PATTERN "*.in" EXCLUDE
parent 3e4fa505
......@@ -49,7 +49,7 @@ connection default;
let _BASEDIR = $MYSQLTEST_VARDIR/tmp/basedir;
perl;
use autodie;
open(IN, '<', "std_data/mysql_install_db_win.ini.in");
open(IN, '<', "std_data/mysql_install_db_win.ini");
open(OUT, '>', "$ENV{MYSQLTEST_VARDIR}/tmp/mysql_install_db_win.ini");
while (<IN>) {
s/BASEDIR/$ENV{_BASEDIR}/g;
......
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