Skip to content
Permalink
Browse files
don't use *.in for test data
because INSTALL_MYSQL_TEST() cmake macro has

      PATTERN "*.in" EXCLUDE
  • Loading branch information
vuvova committed Jul 30, 2021
1 parent 3e4fa50 commit 3b052f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
@@ -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;

0 comments on commit 3b052f8

Please sign in to comment.