Skip to content
Snippets Groups Projects
Commit bda21407 authored by Christoph Hertzberg's avatar Christoph Hertzberg
Browse files

Fix help output of buildtests and check scripts

parent 33ca7e3c
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
if [[ $# != 1 || $1 == *help ]] if [[ $# != 1 || $1 == *help ]]
then then
echo "usage: ./check regexp" echo "usage: $0 regexp"
echo " Builds tests matching the regexp." echo " Builds tests matching the regexp."
echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'." echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'."
echo " For example, to launch 5 concurrent builds, use EIGEN_MAKE_ARGS='-j5'" echo " For example, to launch 5 concurrent builds, use EIGEN_MAKE_ARGS='-j5'"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
if [[ $# != 1 || $1 == *help ]] if [[ $# != 1 || $1 == *help ]]
then then
echo "usage: ./check regexp" echo "usage: $0 regexp"
echo " Builds and runs tests matching the regexp." echo " Builds and runs tests matching the regexp."
echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'." echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'."
echo " For example, to launch 5 concurrent builds, use EIGEN_MAKE_ARGS='-j5'" echo " For example, to launch 5 concurrent builds, use EIGEN_MAKE_ARGS='-j5'"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment