[pango/serialization-improvements: 3/3] test-layout: Use an fc fontmap
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/serialization-improvements: 3/3] test-layout: Use an fc fontmap
- Date: Thu, 25 Nov 2021 12:57:38 +0000 (UTC)
commit 805b82daeed040b058feb08f9f5c90c6f21e956b
Author: Matthias Clasen <mclasen redhat com>
Date: Wed Nov 24 21:39:24 2021 -0500
test-layout: Use an fc fontmap
Our new, more precise font checks rely on
data from fontconfig to identify fonts
uniquely. So make sure that we use a custom
fc fontmap, if we have one.
tests/test-layout.c | 11 +++++++++++
1 file changed, 11 insertions(+)
---
diff --git a/tests/test-layout.c b/tests/test-layout.c
index 93a6118f..f451f09c 100644
--- a/tests/test-layout.c
+++ b/tests/test-layout.c
@@ -29,6 +29,7 @@
#include "config.h"
#include <pango/pangocairo.h>
+#include <pango/pangocairo-fc.h>
#include <pango/pangofc-fontmap.h>
#include "test-common.h"
@@ -46,6 +47,12 @@ test_layout (gconstpointer d)
PangoContext *context;
PangoLayout *layout;
+ if (!PANGO_IS_FC_FONT_MAP (pango_cairo_font_map_get_default ()))
+ {
+ g_test_skip ("Not an fc fontmap. Skipping...");
+ return;
+ }
+
char *old_locale = g_strdup (setlocale (LC_ALL, NULL));
setlocale (LC_ALL, "en_US.UTF-8");
if (strstr (setlocale (LC_ALL, NULL), "en_US") == NULL)
@@ -104,6 +111,8 @@ install_fonts (const char *dir)
PangoFontMap *map;
char *conf;
+ map = g_object_new (PANGO_TYPE_CAIRO_FC_FONT_MAP, NULL);
+
config = FcConfigCreate ();
conf = g_strdup_printf ("<?xml version=\"1.0\"?>\n"
@@ -121,6 +130,8 @@ install_fonts (const char *dir)
map = pango_cairo_font_map_get_default ();
pango_fc_font_map_set_config (PANGO_FC_FONT_MAP (map), config);
FcConfigDestroy (config);
+
+ pango_cairo_font_map_set_default (PANGO_CAIRO_FONT_MAP (map));
}
int
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]