test-paint: Avoid g_test_skip_printf
This is relatively recent api we don't need.
This commit is contained in:
parent
e61c2be41c
commit
eb0f0279d2
|
@ -452,7 +452,8 @@ test_compare_ot_ft (gconstpointer d)
|
||||||
paint_data_t data;
|
paint_data_t data;
|
||||||
|
|
||||||
#ifndef HAVE_FT_COLRv1
|
#ifndef HAVE_FT_COLRv1
|
||||||
g_test_skip_printf ("freetype support not present");
|
g_test_message ("FreeType COLRv1 support not present");
|
||||||
|
g_test_skip ();
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -500,7 +501,8 @@ test_hb_paint_ft (gconstpointer data)
|
||||||
#ifdef HAVE_FT_COLRv1
|
#ifdef HAVE_FT_COLRv1
|
||||||
test_hb_paint (data, 1);
|
test_hb_paint (data, 1);
|
||||||
#else
|
#else
|
||||||
g_test_skip_printf ("FreeType COLRv1 support not present");
|
g_test_message ("FreeType COLRv1 support not present");
|
||||||
|
g_test_skip ();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -595,7 +597,8 @@ test_color_stops_ft (void)
|
||||||
#ifdef HAVE_FT_COLRv1
|
#ifdef HAVE_FT_COLRv1
|
||||||
test_color_stops (1);
|
test_color_stops (1);
|
||||||
#else
|
#else
|
||||||
g_test_skip_printf ("FreeType COLRv1 support not present");
|
g_test_message ("FreeType COLRv1 support not present");
|
||||||
|
g_test_skip ();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue