diff options
author | unknown <pcrews@pcrews-mac-local.local> | 2008-05-01 11:36:03 -0400 |
---|---|---|
committer | unknown <pcrews@pcrews-mac-local.local> | 2008-05-01 11:36:03 -0400 |
commit | 38c28141a88c1aac5642ef8ad444e12850582697 (patch) | |
tree | 0778ea143fba1ecfcaec383c805631a146c02f28 /client/mysqltest.c | |
parent | cf2b2cc506a8933ccaaf271e228bb9f6b70531ac (diff) | |
download | mariadb-git-38c28141a88c1aac5642ef8ad444e12850582697.tar.gz |
Bug#36026 - Test funcs_1.<engine>_trig_03 failing on Windows
Bug#36028 - Test funcs_1.<engine>_trig_03e failing on Windows
Bug#36029 - Test funcs_1.<engine>_trig_0407 failing on Windows
Bug#36030 - Test funcs_1.<engine>_trig_08 failing on Windows
Adding $MASTER_MYSOCK to init_win_path()
When path names are short, master.sock ends up in MYSQL_TMP_DIR, but with longer path names,
master.sock ends up in /tmp/<random_string>/ and these tests will fail due to path delimiter difference.
New changeset to start with 5.0 -- Not all of these tests are present in 5.0, but want to keep mysqltest the same
Diffstat (limited to 'client/mysqltest.c')
-rw-r--r-- | client/mysqltest.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 1d85e777e48..a75debd2ca5 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -5464,6 +5464,7 @@ void init_win_path_patterns() const char* paths[] = { "$MYSQL_TEST_DIR", "$MYSQL_TMP_DIR", "$MYSQLTEST_VARDIR", + "$MASTER_MYSOCK", "./test/" }; int num_paths= sizeof(paths)/sizeof(char*); int i; |