From 04ca9658c5f6226913a447eb0679fe3aee03e48e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Tue, 20 Mar 2018 12:12:01 +0200 Subject: [PATCH] Use correct executable name The test executable name had a typo in it. --- server/modules/protocol/MySQL/mariadbclient/test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/protocol/MySQL/mariadbclient/test/CMakeLists.txt b/server/modules/protocol/MySQL/mariadbclient/test/CMakeLists.txt index 14cfdef41..31962be1f 100644 --- a/server/modules/protocol/MySQL/mariadbclient/test/CMakeLists.txt +++ b/server/modules/protocol/MySQL/mariadbclient/test/CMakeLists.txt @@ -6,6 +6,6 @@ target_link_libraries(test_setsqlmodeparser maxscale-common) target_link_libraries(test_setparser maxscale-common) target_link_libraries(test_sqlmodeparser maxscale-common) -add_test(test_setparser test_setarser) +add_test(test_setparser test_setparser) add_test(test_setsqlmodeparser test_setsqlmodeparser) add_test(test_sqlmodeparser test_sqlmodeparser)