-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CRT submodules to latest releases (#1069)
* Update CRT submodules to latest releases Signed-off-by: Burak Varlı <burakvar@amazon.co.uk> * Update non-existent network interface initialization test CRT was returning error during first operation before if it provided with a non-existent network interface name. But with awslabs/aws-c-s3#456, it started failing during the client creation phase. Our tests were written for the previous behaviour and was expecting client creation to succeed even with an invalid network interface. The test is updated to expect errors during client creation. Signed-off-by: Burak Varlı <burakvar@amazon.co.uk> * Update CHANGELOG Co-authored-by: Monthon Klongklaew <monthonk@amazon.com> Signed-off-by: Burak <unexge@gmail.com> --------- Signed-off-by: Burak Varlı <burakvar@amazon.co.uk> Signed-off-by: Burak <unexge@gmail.com> Co-authored-by: Monthon Klongklaew <monthonk@amazon.com>
- Loading branch information
Showing
5 changed files
with
9 additions
and
29 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
Submodule aws-c-common
updated
2 files
+1 −1 | cmake/AwsPrebuildDependency.cmake | |
+9 −4 | include/aws/common/condition_variable.h |
Submodule aws-c-io
updated
7 files
+5 −0 | include/aws/io/socket.h | |
+8 −0 | source/posix/socket.c | |
+6 −0 | source/windows/iocp/socket.c | |
+24 −0 | source/windows/windows_pki_utils.c | |
+2 −0 | tests/CMakeLists.txt | |
+14 −0 | tests/socket_test.c | |
+36 −0 | tests/tls_handler_test.c |
Submodule aws-c-s3
updated
9 files
+3 −0 | .gitignore | |
+1 −0 | include/aws/s3/s3.h | |
+1 −0 | source/s3.c | |
+55 −33 | source/s3_client.c | |
+5 −0 | source/s3_util.c | |
+3 −0 | tests/CMakeLists.txt | |
+15 −0 | tests/mock_s3_server/CreateMultipartUpload/request_timeout.json | |
+55 −0 | tests/s3_data_plane_tests.c | |
+57 −6 | tests/s3_mock_server_tests.c |