mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
24 lines
411 B
Bash
Executable File
24 lines
411 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="${cmake_tests_list}"
|
|
targets_to_make=`echo "$TESTSLIST" | grep "$1" | sed s/^/test_/g | xargs echo`
|
|
|
|
if [ $# == 1 ]
|
|
then
|
|
make $targets_to_make
|
|
exit $?
|
|
fi
|
|
|
|
if [ $# == 2 ]
|
|
then
|
|
make -j $2 $targets_to_make
|
|
exit $?
|
|
fi
|