Skip to content
Snippets Groups Projects
Commit 9b4a5b41 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'test-driver-local-var' into release-3.21


1e3d3c52 TestDriver: Avoid declaring local variable after statement

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !6276
parents 4eb78f77 1e3d3c52
No related branches found
No related tags found
No related merge requests found
......@@ -136,9 +136,11 @@ int main(int ac, char* av[])
t = clock();
status = (*cmakeGeneratedFunctionMapEntries[i].func)(ac, av);
t = clock() - t;
double time_taken = ((double)t) / CLOCKS_PER_SEC;
status_message = (status == -1) ? "not ok" : "ok";
printf("%s %d %s # %f\n", status_message, i + 1, name, time_taken);
{
double time_taken = ((double)t) / CLOCKS_PER_SEC;
printf("%s %d %s # %f\n", status_message, i + 1, name, time_taken);
}
}
printf("All tests finished.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment