-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turn on tests in CI dimension for mySQL (#1063)
We've recently resolved missing symbols and gaps for mySQL. This turns on running unit tests with MySQL/AWS-LC.
- Loading branch information
1 parent
56067dc
commit f5233e1
Showing
5 changed files
with
104 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
diff --git a/testclients/mysql_client_test.cc b/testclients/mysql_client_test.cc | ||
index f1e6744b..26021419 100644 | ||
--- a/testclients/mysql_client_test.cc | ||
+++ b/testclients/mysql_client_test.cc | ||
@@ -23050,6 +23050,9 @@ static void test_bug32915973() { | ||
mysql_stmt_close(stmt); | ||
} | ||
|
||
+/* This test uses stateful session resumption, which is not supported in AWS-LC. */ | ||
+#if !defined (OPENSSL_IS_AWSLC) | ||
+ | ||
static void test_wl13075() { | ||
int rc; | ||
myheader("test_wl13075"); | ||
@@ -23182,6 +23185,7 @@ static void test_wl13075() { | ||
DIE_UNLESS(ret_ses_data == nullptr); | ||
} | ||
} | ||
+#endif | ||
|
||
static void finish_with_error(MYSQL *con) { | ||
fprintf(stderr, "[%i] %s\n", mysql_errno(con), mysql_error(con)); | ||
@@ -23841,7 +23845,9 @@ static struct my_tests_st my_tests[] = { | ||
{"test_bug32892045", test_bug32892045}, | ||
{"test_bug33164347", test_bug33164347}, | ||
{"test_bug32915973", test_bug32915973}, | ||
+#if !defined (OPENSSL_IS_AWSLC) | ||
{"test_wl13075", test_wl13075}, | ||
+#endif | ||
{"test_bug34007830", test_bug34007830}, | ||
{"test_bug33535746", test_bug33535746}, | ||
{"test_server_telemetry_traces", test_server_telemetry_traces}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters