-
Notifications
You must be signed in to change notification settings - Fork 7
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 check recursion and check test cases all.sh components #94
base: development
Are you sure you want to change the base?
Add check recursion and check test cases all.sh components #94
Conversation
Signed-off-by: Thomas Daubney <[email protected]>
Add components for check_recursion and check_test_cases. Signed-off-by: Thomas Daubney <[email protected]>
tests/all_sh_components.txt
Outdated
|
||
component_check_recursion () { | ||
msg "Check: recursion.pl" # < 1s | ||
tests/scripts/recursion.pl library/*.c |
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.
library/*.c is not suitable
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.
Sorry, I meant to change that to core and I clearly forgot.
Signed-off-by: Thomas Daubney <[email protected]>
@@ -209,7 +209,7 @@ component_test_cmake_shared () { | |||
|
|||
component_check_recursion () { | |||
msg "Check: recursion.pl" # < 1s | |||
tests/scripts/recursion.pl library/*.c | |||
tests/scripts/recursion.pl core/*.c |
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.
we need to check also the drivers C files.
Signed-off-by: Thomas Daubney <[email protected]>
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
Fixes #53
This PR adds the all.sh components for
check_recursion
andcheck_test_cases
and addsrecursion.pl
to the list of scripts to copy inpsa_crypto.py
.