-
Notifications
You must be signed in to change notification settings - Fork 10
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 code style check #48
Labels
Comments
ronald-cron-arm
added
enhancement
New feature or request
size-s
Estimated task size: small (~2d)
labels
Sep 22, 2023
github-project-automation
bot
moved this to PSA repo Q4 - all.sh components
in Backlog for Mbed TLS
Aug 30, 2024
Upon investigation, this task just requires check-generated-files.sh to be moved to Currently an if statement like this is invalid: if (ret != 0)
return P256_INVALID_PRIVKEY; and needs to be replaced with if (ret != 0) {
return P256_INVALID_PRIVKEY;
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add code style check
tf-psa-crypto/tests/scripts/components-basic-checks.sh
(to be created).Depends on: Mbed-TLS/mbedtls#9720 and #50 (code_style.py parses check-generated-files.sh).
DOD: Same support for code style checking in TF-PSA-Crypto as in mbedtls
The text was updated successfully, but these errors were encountered: