Skip to content

Commit

Permalink
fix code coverage message
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmadsen committed Aug 31, 2022
1 parent ff9161e commit 465530d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions source/lib/omnitrace/library.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -819,8 +819,11 @@ omnitrace_finalize_hidden(void)
OMNITRACE_VERBOSE_F(1, "Shutting down thread-pools...\n");
tasking::shutdown();

OMNITRACE_VERBOSE_F(1, "Post-processing the code coverage...\n");
if(get_use_code_coverage()) coverage::post_process();
if(get_use_code_coverage())
{
OMNITRACE_VERBOSE_F(1, "Post-processing the code coverage...\n");
coverage::post_process();
}

bool _perfetto_output_error = false;
if(get_use_perfetto() && !is_system_backend())
Expand Down

0 comments on commit 465530d

Please sign in to comment.