gem_gtt_hog: Print elapsed time in ms
authorChris Wilson <chris@chris-wilson.co.uk>
Fri, 10 Jan 2014 16:09:57 +0000 (16:09 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Fri, 10 Jan 2014 16:10:31 +0000 (16:10 +0000)
Missed one last diff before pushing

tests/gem_gtt_hog.c

index 9a1f426..73c4e9e 100644 (file)
@@ -170,8 +170,8 @@ int main(int argc, char **argv)
                igt_assert(status == 0);
        }
        gettimeofday(&end, NULL);
-       printf("Time to execute %lu children:           %7.3fยตs\n",
-              ARRAY_SIZE(children), elapsed(&start, &end));
+       printf("Time to execute %lu children:           %7.3fms\n",
+              ARRAY_SIZE(children), elapsed(&start, &end) / 1000);
 
        return 0;
 }