Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101898187
check.in
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Feb 14, 21:43
Size
670 B
Mime Type
text/x-shellscript
Expires
Sun, Feb 16, 21:43 (2 d)
Engine
blob
Format
Raw Data
Handle
24240313
Attached To
rDLMA Diffusion limited mixed aggregation
check.in
View Options
#!/bin/bash
# check : shorthand for make and ctest -R
if [[ $# != 1 || $1 == *help ]]
then
echo "usage: $0 regexp"
echo " Builds and runs tests matching the regexp."
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 " The EIGEN_CTEST_ARGS environment variable allows to pass args to 'ctest'."
echo " For example, with CTest 2.8, you can use EIGEN_CTEST_ARGS='-j5'."
exit 0
fi
if [ -n "${EIGEN_CTEST_ARGS:+x}" ]
then
./buildtests.sh "$1" && ctest -R "$1" ${EIGEN_CTEST_ARGS}
else
./buildtests.sh "$1" && ctest -R "$1"
fi
exit $?
Event Timeline
Log In to Comment