-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
H2 unittest and integration test (#142)
Co-authored-by: Dengke Tang <[email protected]>
- Loading branch information
Showing
9 changed files
with
100 additions
and
10 deletions.
There are no files selected for viewing
Submodule aws-c-cal
updated
12 files
+91 −0 | .github/workflows/ci.yml | |
+0 −23 | .github/workflows/mac-osx-ci.yml | |
+1 −1 | CMakeLists.txt | |
+13 −1 | builder.json | |
+14 −5 | include/aws/cal/ecc.h | |
+0 −2 | include/aws/cal/private/ecc.h | |
+2 −0 | source/darwin/securityframework_ecc.c | |
+17 −1 | source/ecc.c | |
+4 −0 | source/unix/opensslcrypto_ecc.c | |
+2 −0 | source/windows/bcrypt_ecc.c | |
+5 −0 | tests/CMakeLists.txt | |
+138 −12 | tests/ecc_test.c |
Submodule aws-c-common
updated
31 files
Submodule aws-c-http
updated
38 files
Submodule aws-c-io
updated
18 files
+36 −0 | .github/workflows/proof-alarm.yml | |
+1 −1 | CMakeLists.txt | |
+134 −0 | docs/epoll_event_loop_proof.md | |
+2 −2 | include/aws/io/channel.h | |
+23 −3 | include/aws/io/host_resolver.h | |
+3 −0 | include/aws/io/io.h | |
+1 −0 | include/aws/io/logging.h | |
+178 −0 | include/aws/io/retry_strategy.h | |
+356 −0 | source/exponential_backoff_retry_strategy.c | |
+43 −1 | source/host_resolver.c | |
+13 −1 | source/io.c | |
+5 −0 | source/posix/host_resolver.c | |
+67 −0 | source/retry_strategy.c | |
+4 −0 | source/s2n/s2n_tls_channel_handler.c | |
+16 −1 | source/windows/secure_channel_tls_handler.c | |
+8 −2 | tests/CMakeLists.txt | |
+263 −0 | tests/exponential_backoff_retry_test.c | |
+1 −1 | tests/statistics_handler_test.h |
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
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