[OE-core] [PATCH] pango: fix ptest failed problem

changqing.li at windriver.com changqing.li at windriver.com
Sun Sep 30 01:59:33 UTC 2018


From: Changqing Li <changqing.li at windriver.com>

disable-debug will cause compiling with G_DISABLE_ASSERT, but ptest need
it, so don't disable-debug when ptest is enabled.

ptest fail error:

Tests were compiled with G_DISABLE_ASSERT and are likely no-ops. Aborting.
FAIL: pango/test-font.test (Child process exited with code 1)
Running test: pango/testboundaries_ucd.test
Tests were compiled with G_DISABLE_ASSERT and are likely no-ops. Aborting.
FAIL: pango/testboundaries_ucd.test (Child process exited with code 1)
Running test: pango/testboundaries.test
Tests were compiled with G_DISABLE_ASSERT and are likely no-ops. Aborting.
FAIL: pango/testboundaries.test (Child process exited with code 1)
Running test: pango/testattributes.test
Tests were compiled with G_DISABLE_ASSERT and are likely no-ops. Aborting.

Signed-off-by: Changqing Li <changqing.li at windriver.com>
---
 meta/recipes-graphics/pango/pango_1.42.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/pango/pango_1.42.4.bb b/meta/recipes-graphics/pango/pango_1.42.4.bb
index e73fd28..c680720 100644
--- a/meta/recipes-graphics/pango/pango_1.42.4.bb
+++ b/meta/recipes-graphics/pango/pango_1.42.4.bb
@@ -24,7 +24,7 @@ DEPENDS = "glib-2.0 glib-2.0-native fontconfig freetype virtual/libiconv cairo h
 PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}"
 PACKAGECONFIG[x11] = "--with-xft,--without-xft,virtual/libx11 libxft"
 
-EXTRA_OECONF = "--disable-debug"
+EXTRA_OECONF = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest',"","--disable-debug",d)}"
 
 LEAD_SONAME = "libpango-1.0*"
 LIBV = "1.8.0"
-- 
2.7.4




More information about the Openembedded-core mailing list