-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
[Baremetal] Harmonize static function compiler flags #2865
[Baremetal] Harmonize static function compiler flags #2865
Conversation
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.
LGTM
Warnings are treated as errors in Mbed TLS test. An error "ssl_parse_client_hello_v2’ defined but not used" can occur in some specific configurations and therefore tests will break. Use similar flags for static function "ssl_parse_client_hello_v2" as what is used when calling the function to prevent the compilation warning/error.
c5368a3
to
d198672
Compare
Force pushed to get CI re-triggered. |
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.
LGTM
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.
LGTM. Thanks for fixing that.
CI jobs have failed for no obvious reasonable reason. Just in case it's a spurious fault, I've restarted the job. Downgrading from 'ready to merge' to 'needs: CI'. |
Latest CI failures were only due to the known-flaky "DTLS reconnect" test in |
The only failure in the CI is the API-ABI check on pr-head (passing on pr-merge) which as discussed in the daily is an artefact of how the checker works and the fact that another PR merged in the meantime changed the ABI. Therefore, ignoring it and marking the PR as "ready for merge" anyway. |
Description
Warnings are treated as errors in Mbed TLS test. An error
"ssl_parse_client_hello_v2’ defined but not used" can occur in some
specific configurations and therefore tests will break.
Use similar flags for static function "ssl_parse_client_hello_v2" as
what is used when calling the function to prevent the compilation
warning/error.
Status
READY