Skip to content

Commit 652dc88

Browse files
author
Srikanth B R
committed
Bug#23236320: MYSQLTEST DOESN'T NORMALIZE THE CHARACTER_SETS_DIR PATH
IN ITS OUTPUT ON WINDOWS Issue : ------- The mysqltest client does not include CHARACTER_SETS_DIR path in the list of patterns matched and normalized if found in the output. This may lead to a result mismatch with MTR expecting a normalized path with only forward slashes but getting a path with backslashes for the charsets directory on windows. Fix : ----- Adding the path of CHARACTER_SETS_DIR to the list of patterns which are matched in mysqltest output on windows and normalized. Reviewed by : Pavan Naik <pavan.naik@oracle.com> RB #12614
1 parent 8bad283 commit 652dc88

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

client/mysqltest.cc

+1
Original file line numberDiff line numberDiff line change
@@ -7366,6 +7366,7 @@ void init_win_path_patterns()
73667366
"$MYSQLTEST_VARDIR",
73677367
"$MASTER_MYSOCK",
73687368
"$MYSQL_SHAREDIR",
7369+
"$MYSQL_CHARSETSDIR",
73697370
"$MYSQL_LIBDIR",
73707371
"./test/",
73717372
".ibd",

0 commit comments

Comments
 (0)