Re-enable full node_allocator testing

This commit is contained in:
Ion Gaztañaga
2026-01-20 20:49:17 +01:00
parent 4e2e8ecd18
commit 89d04c76ea

View File

@@ -52,21 +52,21 @@ int main ()
{
if(test::list_test<MyList, true>())
return 1;
//if(test::list_test<MyOList, true>())
//return 1;
if(test::list_test<MyOList, true>())
return 1;
if(test::list_test<MyListV1, true>())
return 1;
//if(test::list_test<MyOListV1, true>())
//return 1;
if(test::list_test<MyOListV1, true>())
return 1;
if(test::vector_test<MyVector>())
return 1;
//if(test::vector_test<MyOVector>())
//return 1;
if(test::vector_test<MyOVector>())
return 1;
if(test::vector_test<MyVectorV1>())
return 1;
//if(test::vector_test<MyOVectorV1>())
//return 1;
if(test::vector_test<MyOVectorV1>())
return 1;
return 0;
}