ソースを参照

tests/loader.c: allow better parsing of execution time

Nathalie Furmento 12 年 前
コミット
8eb0599066
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      tests/loader.c

+ 1 - 1
tests/loader.c

@@ -301,7 +301,7 @@ int main(int argc, char *argv[])
 
 	gettimeofday(&end, NULL);
 	timing = (double)((end.tv_sec - start.tv_sec)*1000000 + (end.tv_usec - start.tv_usec));
-	fprintf(stderr, "Execution of test '%s' took %f s\n", test_name, timing/1000000);
+	fprintf(stderr, "#Execution_time_in_seconds %f %s\n", timing/1000000, test_name);
 
 	return ret;
 }