diff options
| author | Ross Burton <ross.burton@intel.com> | 2019-09-27 14:39:26 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-02 10:09:47 +0100 |
| commit | 67d0a62bdd11b0271981a3d573747ec3a43b7596 (patch) | |
| tree | 9f13d6eaecb3ca800e300d1cd41754594e0e30c3 /meta/recipes-graphics/pango | |
| parent | 059961ff69ebfc7e69c9f38af1c66cfe4a7c8c6f (diff) | |
| download | poky-67d0a62bdd11b0271981a3d573747ec3a43b7596.tar.gz | |
pango: fix the failing testiter test case
The testiter test case fails if libthai support isn't enabled because it
execises codepaths that need libthai to be correct. Backport a patch to skip
this test if libthai isn't enabled.
(From OE-Core rev: 7472bdb6ed1039b7f38afc728c034a13d0bbee0e)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/pango')
| -rw-r--r-- | meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch | 36 | ||||
| -rw-r--r-- | meta/recipes-graphics/pango/pango_1.44.6.bb | 3 |
2 files changed, 38 insertions, 1 deletions
diff --git a/meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch b/meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch new file mode 100644 index 0000000000..3f9ebff33e --- /dev/null +++ b/meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | Upstream-Status: Backport | ||
| 2 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
| 3 | |||
| 4 | From 12beb39925b5a4574a7cfd86073b59bceb49f791 Mon Sep 17 00:00:00 2001 | ||
| 5 | From: Matthias Clasen <mclasen@redhat.com> | ||
| 6 | Date: Wed, 4 Sep 2019 15:51:06 -0400 | ||
| 7 | Subject: [PATCH] Skip thai break tests without libthai | ||
| 8 | |||
| 9 | If we don't have libthai, these tests fail. | ||
| 10 | |||
| 11 | Closes: https://gitlab.gnome.org/GNOME/pango/issues/420 | ||
| 12 | --- | ||
| 13 | tests/meson.build | 5 ++++- | ||
| 14 | 1 file changed, 4 insertions(+), 1 deletion(-) | ||
| 15 | |||
| 16 | diff --git a/tests/meson.build b/tests/meson.build | ||
| 17 | index 4c22c12c..c617331f 100644 | ||
| 18 | --- a/tests/meson.build | ||
| 19 | +++ b/tests/meson.build | ||
| 20 | @@ -89,9 +89,12 @@ test_breaks_data = [ | ||
| 21 | 'breaks/one', | ||
| 22 | 'breaks/two', | ||
| 23 | 'breaks/three', | ||
| 24 | - 'breaks/four', | ||
| 25 | ] | ||
| 26 | |||
| 27 | +if thai_dep.found() | ||
| 28 | + test_breaks_data += [ 'breaks/four', ] | ||
| 29 | +endif | ||
| 30 | + | ||
| 31 | test_items_data = [ | ||
| 32 | 'itemize/one', | ||
| 33 | ] | ||
| 34 | -- | ||
| 35 | 2.20.1 | ||
| 36 | |||
diff --git a/meta/recipes-graphics/pango/pango_1.44.6.bb b/meta/recipes-graphics/pango/pango_1.44.6.bb index 882eada7a4..da7f2156dc 100644 --- a/meta/recipes-graphics/pango/pango_1.44.6.bb +++ b/meta/recipes-graphics/pango/pango_1.44.6.bb | |||
| @@ -15,7 +15,8 @@ GNOMEBASEBUILDCLASS = "meson" | |||
| 15 | 15 | ||
| 16 | inherit gnomebase gtk-doc ptest-gnome upstream-version-is-even gobject-introspection | 16 | inherit gnomebase gtk-doc ptest-gnome upstream-version-is-even gobject-introspection |
| 17 | 17 | ||
| 18 | SRC_URI += "file://run-ptest" | 18 | SRC_URI += "file://run-ptest \ |
| 19 | file://0001-Skip-thai-break-tests-without-libthai.patch" | ||
| 19 | SRC_URI[archive.md5sum] = "db0a3243ba33e02aaa775412f8e5f412" | 20 | SRC_URI[archive.md5sum] = "db0a3243ba33e02aaa775412f8e5f412" |
| 20 | SRC_URI[archive.sha256sum] = "3e1e41ba838737e200611ff001e3b304c2ca4cdbba63d200a20db0b0ddc0f86c" | 21 | SRC_URI[archive.sha256sum] = "3e1e41ba838737e200611ff001e3b304c2ca4cdbba63d200a20db0b0ddc0f86c" |
| 21 | 22 | ||
