Skip to content
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

Conversation

Chiraffollo
Copy link
Contributor

  • 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
Copy link

Review changes with SemanticDiff.

@Chiraffollo Chiraffollo marked this pull request as ready for review July 19, 2024 21:58
@@ -142,7 +142,7 @@ fi
#******************************************************************************
# Set the number of concurrent processes to use.
#******************************************************************************
if [ $# -eq 2 ]; then
if [ $# -le 3 ]; then
Copy link
Contributor

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

Copy link
Contributor Author

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.

@jwellbelove jwellbelove changed the base branch from master to pull-request/#929-Fix-run-tests.sh-script July 20, 2024 09:39
@jwellbelove jwellbelove merged commit ba14f8f into ETLCPP:pull-request/#929-Fix-run-tests.sh-script Jul 20, 2024
63 checks passed
jwellbelove pushed a commit that referenced this pull request Jul 25, 2024
jwellbelove pushed a commit that referenced this pull request Jul 28, 2024
* 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants