Reduce instantiation explosion in tests reducing combinations, so that regression testing is manageable in time

This commit is contained in:
Ion Gaztañaga
2023-05-04 18:19:24 +02:00
parent cc05ac6f93
commit f2afafa6bb
12 changed files with 62 additions and 203 deletions

View File

@@ -149,25 +149,17 @@ int main()
//VoidPointer x ConstantTimeSize x Map x DefaultHolder
//void pointer
test_main_template<void*, false, false, false, Base, false>::execute();
test_main_template<void*, false, true, false, Member, false>::execute();
test_main_template<void*, true, false, false, NonMember, false>::execute();
test_main_template<void*, true, true, false, Base, false>::execute();
test_main_template<void*, false, false, false, Base, true>::execute();
test_main_template<void*, false, true, false, Member, true>::execute();
test_main_template<void*, true, false, false, NonMember, true>::execute();
test_main_template<void*, true, true, false, Base, true>::execute();
test_main_template<void*, true, true, true, Base, true>::execute();
test_main_template<void*, false, false, true, Member, true>::execute();
test_main_template<void*, true, true, false, NonMember, true>::execute();
test_main_template<void*, false, false, true, Member, false>::execute();
test_main_template<void*, true, true, false, NonMember, false>::execute();
test_main_template<void*, false, false, false, Base, false>::execute();
//smart_ptr
test_main_template<smart_ptr<void>, false, false, false, Member, false>::execute();
test_main_template<smart_ptr<void>, false, true, false, NonMember, false>::execute();
test_main_template<smart_ptr<void>, true, false, false, Base, false>::execute();
test_main_template<smart_ptr<void>, true, true, false, Member, false>::execute();
test_main_template<smart_ptr<void>, false, false, false, Member, true>::execute();
test_main_template<smart_ptr<void>, false, true, false, NonMember, true>::execute();
test_main_template<smart_ptr<void>, true, false, false, Base, true>::execute();
test_main_template<smart_ptr<void>, true, true, true, Member, true>::execute();
test_main_template<smart_ptr<void>, true, false, false, NonMember, true>::execute();
test_main_template<smart_ptr<void>, false, false, false, Base, false>::execute();
////bounded_ptr (bool ConstantTimeSize, bool Map)
//test_main_template_bptr< false, false >::execute();