-
-
Notifications
You must be signed in to change notification settings - Fork 391
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
Fix run-tests.sh script #929
Fix run-tests.sh script #929
Conversation
Chiraffollo
commented
Jul 19, 2024
- Fix ordering of parameters in help info
- Change spaces to tabs in indentation of methods (unique usage of indentation)
- Fix check for number of parameters to avoid empty string as default parameter value
- Fix ordering of parameters in help info - Change spaces to tabs in indentation of methods (unique usage of indentation) - Fix check for number of parameters to avoid empty string as default parameter value
Review changes with SemanticDiff. |
test/run-tests.sh
Outdated
@@ -142,7 +142,7 @@ fi | |||
#****************************************************************************** | |||
# Set the number of concurrent processes to use. | |||
#****************************************************************************** | |||
if [ $# -eq 2 ]; then | |||
if [ $# -le 3 ]; then |
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.
This does not work.
./run-tests.sh 11 0 7
sets CMAKE_BUILD_PARALLEL_LEVEL
to 4
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.
Your right. I should not try to improve my fix after testing... I will fix it.
ba14f8f
into
ETLCPP:pull-request/#929-Fix-run-tests.sh-script
…ment # Conflicts: # test/run-tests.sh
* Fix run-tests.sh script - Fix ordering of parameters in help info - Change spaces to tabs in indentation of methods (unique usage of indentation) - Fix check for number of parameters to avoid empty string as default parameter value * Fix incorrect comparison