Eo: Made benchmarking output a bit nicer.

SVN revision: 75961
This commit is contained in:
Tom Hacohen 2012-09-03 07:27:01 +00:00
parent b9e11cf26e
commit ffafe9bbe0
3 changed files with 3 additions and 3 deletions

View File

@ -21,6 +21,6 @@ target_link_libraries(eo_bench
add_dependencies(eo_bench eo)
get_target_property(eo_bench_EXEC_FILE eo_bench LOCATION)
add_custom_target(benchmark COMMAND ${eo_bench_EXEC_FILE} eo_bench)
add_custom_target(benchmark COMMAND ${eo_bench_EXEC_FILE} eo)
add_dependencies(benchmark eo_bench)

View File

@ -17,7 +17,7 @@ struct _Eina_Benchmark_Case
};
static const Eina_Benchmark_Case etc[] = {
{ "Eo_Do", eo_bench_eo_do },
{ "eo_do", eo_bench_eo_do },
{ NULL, NULL }
};

View File

@ -22,6 +22,6 @@ bench_eo_do_general(int request)
void eo_bench_eo_do(Eina_Benchmark *bench)
{
eina_benchmark_register(bench, "general",
eina_benchmark_register(bench, "various",
EINA_BENCHMARK(bench_eo_do_general), 100, 10000, 500);
}