-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI fixes #36
CI fixes #36
Conversation
@@ -4,3 +4,4 @@ | |||
0004-disable-urandom-test-docker.patch | |||
0005-fix-ssl-test-runner-output.patch | |||
0006-fix-gcc4-compile-errors.patch | |||
0007-fix-abi-test-compilation.patch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
main
has 007 patch. Need to change this to 008 or 009.
WriteFile(stderr_handle, buf, strlen(buf), &unused, nullptr); | ||
} | ||
#else | ||
- write(STDERR_FILENO, buf, strlen(buf)); | ||
+ OPENSSL_UNUSED ssize_t unused_ret = | ||
+ write(STDERR_FILENO, buf, strlen(buf)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this to fix gcc4 related compile warning?
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
#!/bin/bash | ||
|
||
# This test is aimed to run with GCC 6 and above on x86-64 architectures. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The copyright header is needed based on open source policy.
Closing in favor of #40 |
Basic point operations for the Weierstrass curves s2n-bignum original commit: awslabs/s2n-bignum@44003b0
Basic point operations for the Weierstrass curves s2n-bignum original commit: awslabs/s2n-bignum@44003b0
Basic point operations for the Weierstrass curves s2n-bignum original commit: awslabs/s2n-bignum@44003b0
Basic point operations for the Weierstrass curves s2n-bignum original commit: awslabs/s2n-bignum@44003b0
Basic point operations for the Weierstrass curves s2n-bignum original commit: awslabs/s2n-bignum@44003b0 s2n-bignum original commit: awslabs/s2n-bignum@2af9c6a
Basic point operations for the Weierstrass curves
Basic point operations for the Weierstrass curves s2n-bignum original commit: awslabs/s2n-bignum@44003b0
Issues:
CryptoAlg-345
Description of changes:
Re-enables unit tests that were failing in CodeBuild.
Testing:
CI tests are all calling
run_posix_tests.sh
and passing.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.