Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 6b330add authored by hhakim's avatar hhakim
Browse files

Disable by default the benchmark part of MatBSR tests because ctest runs them...

Disable by default the benchmark part of MatBSR tests because ctest runs them in parallel so the times are biased on VMs.
parent e21e26cf
Branches
Tags
No related merge requests found
......@@ -790,9 +790,13 @@ int main(int argc, char** argv)
test_getitem(*bmat);
test_tosparse(*bmat);
delete bmat;
test_faust();
test_faust2();
test_faust3();
if(argc > 1)
{
// mini-benchmark
test_faust();
test_faust2();
test_faust3();
}
return EXIT_SUCCESS;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment