summaryrefslogtreecommitdiff
path: root/tests/mysql_client_test.c
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-10-05 16:49:30 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2021-10-05 16:49:30 +0300
commit1146b5cb58d258d15f59558cc10caffc2f29f79f (patch)
treed9a36d81c2b83c9b6f4c9ded5db8c27055ba8aa0 /tests/mysql_client_test.c
parentdf94aa344b8dd219d6afbec502b53505385e495b (diff)
downloadmariadb-git-1146b5cb58d258d15f59558cc10caffc2f29f79f.tar.gz
MDEV-26761: main.mysql_client_test fails with MemorySanitizer
Updated libmariadb and enable the test.
Diffstat (limited to 'tests/mysql_client_test.c')
-rw-r--r--tests/mysql_client_test.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c
index 3cc96193e4a..07ef2e0f2ac 100644
--- a/tests/mysql_client_test.c
+++ b/tests/mysql_client_test.c
@@ -21194,10 +21194,7 @@ static void test_explain_meta()
}
-#if __has_feature(memory_sanitizer)
-/* FIXME: MDEV-26761: main.mysql_client_test fails with MemorySanitizer */
-#elif defined EMBEDDED_LIBRARY
-#else
+#ifndef EMBEDDED_LIBRARY
#define MDEV19838_MAX_PARAM_COUNT 32
#define MDEV19838_FIELDS_COUNT 17
static void test_mdev19838()
@@ -21689,10 +21686,7 @@ static struct my_tests_st my_tests[]= {
#endif
{ "test_ps_params_in_ctes", test_ps_params_in_ctes },
{ "test_explain_meta", test_explain_meta },
-#if __has_feature(memory_sanitizer)
-/* FIXME: MDEV-26761: main.mysql_client_test fails with MemorySanitizer */
-#elif defined EMBEDDED_LIBRARY
-#else
+#ifndef EMBEDDED_LIBRARY
{ "test_mdev19838", test_mdev19838 },
#endif
{ "test_mdev18408", test_mdev18408 },