Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Merge branch 'master' into refcount
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed May 15, 2012
2 parents aeaa465 + ad02404 commit 6257bba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/runner.c
Expand Up @@ -28,6 +28,9 @@ char executable_path[PATHMAX] = { '\0' };


static void log_progress(int total, int passed, int failed, const char* name) {
if (total == 0)
total = 1;

LOGF("[%% %3d|+ %3d|- %3d]: %s", (passed + failed) / total * 100,
passed, failed, name);
}
Expand Down

0 comments on commit 6257bba

Please sign in to comment.