[perf/benchmark-shape] Allow taking text-file/font-file args from cmdline
This commit is contained in:
parent
852a8f04eb
commit
1bf2d5f885
|
@ -182,8 +182,9 @@ static void test_backend (backend_t backend,
|
||||||
{
|
{
|
||||||
char name[1024] = "BM_Font/";
|
char name[1024] = "BM_Font/";
|
||||||
strcat (name, op_name);
|
strcat (name, op_name);
|
||||||
|
strcat (name, "/");
|
||||||
const char *p = strrchr (test_input.font_path, '/');
|
const char *p = strrchr (test_input.font_path, '/');
|
||||||
strcat (name, p ? p : test_input.font_path);
|
strcat (name, p ? p + 1 : test_input.font_path);
|
||||||
strcat (name, variable ? "/var" : "");
|
strcat (name, variable ? "/var" : "");
|
||||||
strcat (name, "/");
|
strcat (name, "/");
|
||||||
strcat (name, backend_name);
|
strcat (name, backend_name);
|
||||||
|
@ -238,4 +239,6 @@ int main(int argc, char** argv)
|
||||||
benchmark::RunSpecifiedBenchmarks();
|
benchmark::RunSpecifiedBenchmarks();
|
||||||
benchmark::Shutdown();
|
benchmark::Shutdown();
|
||||||
|
|
||||||
|
if (tests != default_tests)
|
||||||
|
free (tests);
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ struct test_input_t
|
||||||
const char *text_path;
|
const char *text_path;
|
||||||
const char *font_path;
|
const char *font_path;
|
||||||
bool is_variable;
|
bool is_variable;
|
||||||
} tests[] =
|
} default_tests[] =
|
||||||
{
|
{
|
||||||
{"perf/texts/fa-thelittleprince.txt",
|
{"perf/texts/fa-thelittleprince.txt",
|
||||||
"perf/fonts/Amiri-Regular.ttf",
|
"perf/fonts/Amiri-Regular.ttf",
|
||||||
|
@ -46,6 +46,8 @@ struct test_input_t
|
||||||
true},
|
true},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
test_input_t *tests = default_tests;
|
||||||
|
unsigned num_tests = sizeof (default_tests) / sizeof (default_tests[0]);
|
||||||
|
|
||||||
static void BM_Shape (benchmark::State &state,
|
static void BM_Shape (benchmark::State &state,
|
||||||
bool is_var,
|
bool is_var,
|
||||||
|
@ -99,13 +101,31 @@ static void BM_Shape (benchmark::State &state,
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
for (auto& test_input : tests)
|
benchmark::Initialize(&argc, argv);
|
||||||
|
|
||||||
|
if (argc > 2)
|
||||||
{
|
{
|
||||||
|
num_tests = 1;
|
||||||
|
tests = (test_input_t *) calloc (num_tests, sizeof (test_input_t));
|
||||||
|
|
||||||
|
tests[0].is_variable = true;
|
||||||
|
tests[0].text_path = argv[1];
|
||||||
|
tests[0].font_path = argv[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
for (unsigned i = 0; i < num_tests; i++)
|
||||||
|
{
|
||||||
|
auto& test_input = tests[i];
|
||||||
for (int variable = 0; variable < int (test_input.is_variable) + 1; variable++)
|
for (int variable = 0; variable < int (test_input.is_variable) + 1; variable++)
|
||||||
{
|
{
|
||||||
char name[1024] = "BM_Shape";
|
char name[1024] = "BM_Shape";
|
||||||
strcat (name, strrchr (test_input.text_path, '/'));
|
const char *p;
|
||||||
strcat (name, strrchr (test_input.font_path, '/'));
|
strcat (name, "/");
|
||||||
|
p = strrchr (test_input.text_path, '/');
|
||||||
|
strcat (name, p ? p + 1 : test_input.text_path);
|
||||||
|
strcat (name, "/");
|
||||||
|
p = strrchr (test_input.font_path, '/');
|
||||||
|
strcat (name, p ? p + 1 : test_input.font_path);
|
||||||
strcat (name, variable ? "/var" : "");
|
strcat (name, variable ? "/var" : "");
|
||||||
|
|
||||||
benchmark::RegisterBenchmark (name, BM_Shape, variable, test_input)
|
benchmark::RegisterBenchmark (name, BM_Shape, variable, test_input)
|
||||||
|
@ -113,7 +133,9 @@ int main(int argc, char** argv)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
benchmark::Initialize(&argc, argv);
|
|
||||||
benchmark::RunSpecifiedBenchmarks();
|
benchmark::RunSpecifiedBenchmarks();
|
||||||
benchmark::Shutdown();
|
benchmark::Shutdown();
|
||||||
|
|
||||||
|
if (tests != default_tests)
|
||||||
|
free (tests);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue