1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-08 14:02:17 +03:00

Skip async test on Windows

Schannel implementation doesn't support async mode yet.
This commit is contained in:
Georg Richter
2024-04-29 11:15:32 +02:00
parent 45179cffc4
commit 9644f52796

View File

@@ -31,7 +31,9 @@ IF(WITH_DYNCOL)
SET(API_TESTS ${API_TESTS} "dyncol") SET(API_TESTS ${API_TESTS} "dyncol")
ENDIF() ENDIF()
SET(API_TESTS ${API_TESTS} "async") IF(NOT WIN32)
SET(API_TESTS ${API_TESTS} "async")
ENDIF()
#exclude following tests from ctests, since we need to run them manually with different credentials #exclude following tests from ctests, since we need to run them manually with different credentials
SET(MANUAL_TESTS "t_conc173" "rpl_api") SET(MANUAL_TESTS "t_conc173" "rpl_api")