mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-21 09:09:36 +08:00

* DiagonalMatrix: - add MaxSizeAtCompileTime parameter - DiagonalOnTheLeft ---> OnTheLeft - fix bug in DiagonalMatrix::setIdentity()
22 lines
391 B
Bash
Executable File
22 lines
391 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
|
|
fi
|
|
|
|
if [ $# == 2 ]
|
|
then
|
|
make -j $2 $targets_to_make
|
|
fi
|