[test-threads] Test all font-funcs

Fontations & Coretext are new and seems to pass.
This commit is contained in:
Behdad Esfahbod 2025-03-08 11:54:15 -07:00
parent 2a878b1b76
commit c3eac5c0f3
2 changed files with 4 additions and 6 deletions

View file

@ -148,9 +148,8 @@ main (int argc, char **argv)
ref_buffer = hb_buffer_create ();
fill_the_buffer (ref_buffer);
// TODO Test all backends
test_body ("ot");
test_body ("ft");
for (const char **font_funcs = hb_font_list_funcs (); *font_funcs; font_funcs++)
test_body (*font_funcs);
hb_buffer_destroy (ref_buffer);

View file

@ -183,9 +183,8 @@ int main(int argc, char** argv)
{
bool is_var = (bool) variable;
// TODO Test all backends.
test_backend ("ot", is_var, test_input);
test_backend ("ft", is_var, test_input);
for (const char **font_funcs = hb_font_list_funcs (); *font_funcs; font_funcs++)
test_backend (*font_funcs, is_var, test_input);
}
}