-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Add initialization for structures in test #6325
Add initialization for structures in test #6325
Conversation
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
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.
Whether initialization is required for the test program to be correct C depends on the exact order in which the function performs its initial checks. The test code shouldn't depend on that, so it should initialize everything.
2.28 has similar issues in some of its invalid_param
tests. There the issue is also present in test_suite_ecdsa
. On the other hand, test_suite_rsa
is fine.
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
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
Description
Add missing initialization that cause build error.
Fix #6308
Requires Backporting