diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2018-02-20 21:17:36 +0000 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2018-02-20 21:17:36 +0000 |
commit | 56e7b7eaede52e8d2123e909d7d42220f8c63143 (patch) | |
tree | 73e1dc4b2e53d68c3a9d5269f9140142ef08c187 /tests | |
parent | 9d97e6010ebdeab0579a8371d01f34118c518b30 (diff) | |
download | mariadb-git-56e7b7eaede52e8d2123e909d7d42220f8c63143.tar.gz |
Make possible to use clang on Windows (clang-cl)
-DWITH_ASAN can be used as well now, on x64
Fix many clang-cl warnings.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index 23dc458f97a..f188287a001 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -19549,7 +19549,9 @@ static void test_mdev4326() myquery(rc); } +/* Test uses MYSQL_PROTOCOL_SOCKET, not on Windows */ +#ifndef _WIN32 /** BUG#17512527: LIST HANDLING INCORRECT IN MYSQL_PRUNE_STMT_LIST() */ @@ -19590,7 +19592,7 @@ static void test_bug17512527() mysql_stmt_close(stmt2); mysql_stmt_close(stmt1); } - +#endif /* |