mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-02-17 18:09:55 +08:00
25 lines
395 B
Bash
Executable File
25 lines
395 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# == 0 -o $# -ge 3 ]
|
|
then
|
|
echo "usage: ./buildtests regexp [jobs]"
|
|
echo " makes tests matching the regexp, with [jobs] concurrent make jobs"
|
|
exit 0
|
|
fi
|
|
|
|
TESTSLIST="${EIGEN_TESTS_LIST}"
|
|
|
|
targets_to_make=`echo "$TESTSLIST" | egrep "$1" | xargs echo`
|
|
|
|
if [ $# == 1 ]
|
|
then
|
|
make $targets_to_make
|
|
exit $?
|
|
fi
|
|
|
|
if [ $# == 2 ]
|
|
then
|
|
make -j $2 $targets_to_make
|
|
exit $?
|
|
fi
|