Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | if [[ $# != 1 || $1 == *help ]]
|
---|
4 | then
|
---|
5 | echo "usage: ./check regexp"
|
---|
6 | echo " Builds tests matching the regexp."
|
---|
7 | echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'."
|
---|
8 | echo " For example, to launch 5 concurrent builds, use EIGEN_MAKE_ARGS='-j5'"
|
---|
9 | exit 0
|
---|
10 | fi
|
---|
11 |
|
---|
12 | TESTSLIST="meta
|
---|
13 | sizeof
|
---|
14 | dynalloc
|
---|
15 | nomalloc
|
---|
16 | first_aligned
|
---|
17 | mixingtypes
|
---|
18 | packetmath
|
---|
19 | unalignedassert
|
---|
20 | vectorization_logic
|
---|
21 | basicstuff
|
---|
22 | linearstructure
|
---|
23 | integer_types
|
---|
24 | cwiseop
|
---|
25 | unalignedcount
|
---|
26 | exceptions
|
---|
27 | redux
|
---|
28 | visitor
|
---|
29 | block
|
---|
30 | corners
|
---|
31 | product_small
|
---|
32 | product_large
|
---|
33 | product_extra
|
---|
34 | diagonalmatrices
|
---|
35 | adjoint
|
---|
36 | diagonal
|
---|
37 | miscmatrices
|
---|
38 | commainitializer
|
---|
39 | smallvectors
|
---|
40 | mapped_matrix
|
---|
41 | mapstride
|
---|
42 | mapstaticmethods
|
---|
43 | array
|
---|
44 | array_for_matrix
|
---|
45 | array_replicate
|
---|
46 | array_reverse
|
---|
47 | ref
|
---|
48 | triangular
|
---|
49 | selfadjoint
|
---|
50 | product_selfadjoint
|
---|
51 | product_symm
|
---|
52 | product_syrk
|
---|
53 | product_trmv
|
---|
54 | product_trmm
|
---|
55 | product_trsolve
|
---|
56 | product_mmtr
|
---|
57 | product_notemporary
|
---|
58 | stable_norm
|
---|
59 | bandmatrix
|
---|
60 | cholesky
|
---|
61 | lu
|
---|
62 | determinant
|
---|
63 | inverse
|
---|
64 | qr
|
---|
65 | qr_colpivoting
|
---|
66 | qr_fullpivoting
|
---|
67 | upperbidiagonalization
|
---|
68 | hessenberg
|
---|
69 | schur_real
|
---|
70 | schur_complex
|
---|
71 | eigensolver_selfadjoint
|
---|
72 | eigensolver_generic
|
---|
73 | eigensolver_complex
|
---|
74 | real_qz
|
---|
75 | eigensolver_generalized_real
|
---|
76 | jacobi
|
---|
77 | jacobisvd
|
---|
78 | geo_orthomethods
|
---|
79 | geo_homogeneous
|
---|
80 | geo_quaternion
|
---|
81 | geo_transformations
|
---|
82 | geo_eulerangles
|
---|
83 | geo_hyperplane
|
---|
84 | geo_parametrizedline
|
---|
85 | geo_alignedbox
|
---|
86 | stdvector
|
---|
87 | stdvector_overload
|
---|
88 | stdlist
|
---|
89 | stdlist_overload
|
---|
90 | stddeque
|
---|
91 | stddeque_overload
|
---|
92 | resize
|
---|
93 | sparse_vector
|
---|
94 | sparse_basic
|
---|
95 | sparse_product
|
---|
96 | sparse_solvers
|
---|
97 | umeyama
|
---|
98 | householder
|
---|
99 | swap
|
---|
100 | conservative_resize
|
---|
101 | permutationmatrices
|
---|
102 | sparse_permutations
|
---|
103 | nullary
|
---|
104 | nesting_ops
|
---|
105 | zerosized
|
---|
106 | dontalign
|
---|
107 | sizeoverflow
|
---|
108 | prec_inverse_4x4
|
---|
109 | vectorwiseop
|
---|
110 | special_numbers
|
---|
111 | rvalue_types
|
---|
112 | mpl2only
|
---|
113 | simplicial_cholesky
|
---|
114 | conjugate_gradient
|
---|
115 | bicgstab
|
---|
116 | sparselu
|
---|
117 | sparseqr
|
---|
118 | eigen2support
|
---|
119 | NonLinearOptimization
|
---|
120 | NumericalDiff
|
---|
121 | autodiff
|
---|
122 | BVH
|
---|
123 | matrix_exponential
|
---|
124 | matrix_function
|
---|
125 | matrix_power
|
---|
126 | matrix_square_root
|
---|
127 | alignedvector3
|
---|
128 | FFT
|
---|
129 | sparse_extra
|
---|
130 | polynomialsolver
|
---|
131 | polynomialutils
|
---|
132 | kronecker_product
|
---|
133 | splines
|
---|
134 | gmres
|
---|
135 | minres
|
---|
136 | levenberg_marquardt
|
---|
137 | bdcsvd
|
---|
138 | "
|
---|
139 | targets_to_make=`echo "$TESTSLIST" | egrep "$1" | xargs echo`
|
---|
140 |
|
---|
141 | if [ -n "${EIGEN_MAKE_ARGS:+x}" ]
|
---|
142 | then
|
---|
143 | make $targets_to_make ${EIGEN_MAKE_ARGS}
|
---|
144 | else
|
---|
145 | make $targets_to_make
|
---|
146 | fi
|
---|
147 | exit $?
|
---|
148 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.