Skip to content
Snippets Groups Projects
Commit f3683c9b authored by Andre Offringa's avatar Andre Offringa
Browse files

Bug 1491: Disabling results test in normal mode

parent 3e81ea76
No related branches found
No related tags found
No related merge requests found
......@@ -3,11 +3,14 @@
#include <AOFlagger/test/strategy/algorithms/algorithmstestgroup.h>
#include <AOFlagger/test/results/resultstestgroup.h>
int main(int, char *[])
int main(int argc, char *argv[])
{
AlgorithmsTestGroup mainGroup;
mainGroup.Run();
ResultsTestGroup resultsGroup;
resultsGroup.Run();
if(argc > 1 && std::string(argv[1])=="all")
{
ResultsTestGroup resultsGroup;
resultsGroup.Run();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment