[librsvg: 1/3] tests: print the run-time version of freetype
- From: Federico Mena Quintero <federico src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [librsvg: 1/3] tests: print the run-time version of freetype
- Date: Fri, 7 Feb 2020 22:34:04 +0000 (UTC)
commit c0b9ccdcc25d896a39218189be40f4c337105621
Author: Sven Neumann <sven svenfoo org>
Date: Fri Feb 7 10:41:18 2020 +0100
tests: print the run-time version of freetype
Fixes https://gitlab.gnome.org/GNOME/librsvg/issues/553
tests/test-utils.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/tests/test-utils.c b/tests/test-utils.c
index 53b03969..234b7c72 100644
--- a/tests/test-utils.c
+++ b/tests/test-utils.c
@@ -361,9 +361,17 @@ test_utils_setup_font_map (void)
void
test_utils_print_dependency_versions (void)
{
+ FT_Library ft_lib;
+ FT_Int ft_major = 0;
+ FT_Int ft_minor = 0;
+ FT_Int ft_patch = 0;
+
+ FT_Init_FreeType (&ft_lib);
+ FT_Library_Version (ft_lib, &ft_major, &ft_minor, &ft_patch);
+ FT_Done_FreeType (ft_lib);
+
g_test_message ("Cairo version: %s", cairo_version_string ());
g_test_message ("Pango version: %s", pango_version_string ());
- g_test_message ("Freetype version: %d.%d.%d", FREETYPE_MAJOR, FREETYPE_MINOR, FREETYPE_PATCH);
+ g_test_message ("Freetype version: %d.%d.%d", ft_major, ft_minor, ft_patch);
g_test_message ("Harfbuzz version: %s", hb_version_string ());
}
-
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]