mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-24 23:33:13 +08:00
Enable repetition in mixing type unit test
This commit is contained in:
parent
1c0728043a
commit
82c8163067
@ -126,7 +126,9 @@ template<int SizeAtCompileType> void mixingtypes(int size = SizeAtCompileType)
|
|||||||
|
|
||||||
void test_mixingtypes()
|
void test_mixingtypes()
|
||||||
{
|
{
|
||||||
CALL_SUBTEST_1(mixingtypes<3>());
|
for(int i = 0; i < g_repeat; i++) {
|
||||||
CALL_SUBTEST_2(mixingtypes<4>());
|
CALL_SUBTEST_1(mixingtypes<3>());
|
||||||
CALL_SUBTEST_3(mixingtypes<Dynamic>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE)));
|
CALL_SUBTEST_2(mixingtypes<4>());
|
||||||
|
CALL_SUBTEST_3(mixingtypes<Dynamic>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user