2009-11-12 22:35:10 +08:00
|
|
|
#!/bin/bash
|
2009-12-21 19:35:08 +08:00
|
|
|
# check : shorthand for make and ctest -R
|
2009-11-12 22:35:10 +08:00
|
|
|
|
2009-12-31 04:07:05 +08:00
|
|
|
if [ $# == 0 -o $# -ge 2 ]
|
2009-11-12 22:35:10 +08:00
|
|
|
then
|
2009-12-31 04:07:05 +08:00
|
|
|
echo "usage: ./check regexp"
|
|
|
|
echo " Makes and runs tests matching the regexp."
|
|
|
|
echo " The EIGEN_JOBS environment variable controls how many"
|
|
|
|
echo " concurrent jobs are launched."
|
2009-11-12 22:35:10 +08:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2009-12-31 04:07:05 +08:00
|
|
|
# TODO ctest 2.8 is out, honor the jobs parameter
|
|
|
|
./buildtests "$1" && ctest -R "$1"
|