summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glib-2.0/glib-2.0/Enable-more-tests-while-cross-compiling.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/glib-2.0/glib-2.0/Enable-more-tests-while-cross-compiling.patch')
-rw-r--r--meta/recipes-core/glib-2.0/glib-2.0/Enable-more-tests-while-cross-compiling.patch91
1 files changed, 88 insertions, 3 deletions
diff --git a/meta/recipes-core/glib-2.0/glib-2.0/Enable-more-tests-while-cross-compiling.patch b/meta/recipes-core/glib-2.0/glib-2.0/Enable-more-tests-while-cross-compiling.patch
index 5060880926..5ccd3203fb 100644
--- a/meta/recipes-core/glib-2.0/glib-2.0/Enable-more-tests-while-cross-compiling.patch
+++ b/meta/recipes-core/glib-2.0/glib-2.0/Enable-more-tests-while-cross-compiling.patch
@@ -1,4 +1,4 @@
1From 70e462e070f8eb20b7660c1cf88271c0449e43cc Mon Sep 17 00:00:00 2001 1From 1481c6d5f08f9dbbe10abc87b372a1f61db36476 Mon Sep 17 00:00:00 2001
2From: Jussi Kukkonen <jussi.kukkonen@intel.com> 2From: Jussi Kukkonen <jussi.kukkonen@intel.com>
3Date: Mon, 9 Nov 2015 11:07:27 +0200 3Date: Mon, 9 Nov 2015 11:07:27 +0200
4Subject: [PATCH] Enable more tests while cross-compiling 4Subject: [PATCH] Enable more tests while cross-compiling
@@ -10,8 +10,10 @@ case we can depend on glib-2.0-native.
10Upstream-Status: Inappropriate [OE specific] 10Upstream-Status: Inappropriate [OE specific]
11Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> 11Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
12--- 12---
13 gio/tests/Makefile.am | 10 ++++++---- 13 gio/tests/Makefile.am | 10 ++++++----
14 1 file changed, 6 insertions(+), 4 deletions(-) 14 gio/tests/meson.build | 15 ++++++++-------
15 tests/gobject/Makefile.am | 6 ++++++
16 3 files changed, 20 insertions(+), 11 deletions(-)
15 17
16diff --git a/gio/tests/Makefile.am b/gio/tests/Makefile.am 18diff --git a/gio/tests/Makefile.am b/gio/tests/Makefile.am
17index c4e7a92..633e85c 100644 19index c4e7a92..633e85c 100644
@@ -50,3 +52,86 @@ index c4e7a92..633e85c 100644
50 52
51 BUILT_SOURCES += giotypefuncs.inc 53 BUILT_SOURCES += giotypefuncs.inc
52 54
55diff --git a/gio/tests/meson.build b/gio/tests/meson.build
56index dca33bd..181f5c7 100644
57--- a/gio/tests/meson.build
58+++ b/gio/tests/meson.build
59@@ -173,7 +173,7 @@ if host_machine.system() != 'windows'
60
61 # Test programs that need to bring up a session bus (requires dbus-daemon)
62 have_dbus_daemon = find_program('dbus-daemon', required : false).found()
63- if have_dbus_daemon
64+ if true
65 annotate_args = [
66 '--annotate', 'org.project.Bar', 'Key1', 'Value1',
67 '--annotate', 'org.project.Bar', 'org.gtk.GDBus.Internal', 'Value2',
68@@ -406,12 +406,13 @@ if installed_tests_enabled
69 install_subdir('cert-tests', install_dir : installed_tests_execdir)
70 endif
71
72-if not meson.is_cross_build() or meson.has_exe_wrapper()
73+#if not meson.is_cross_build() or meson.has_exe_wrapper()
74+if meson.is_cross_build()
75
76 plugin_resources_c = custom_target('plugin-resources.c',
77 input : 'test4.gresource.xml',
78 output : 'plugin-resources.c',
79- command : [glib_compile_resources,
80+ command : ['glib-compile-resources',
81 '--target=@OUTPUT@',
82 '--sourcedir=' + meson.current_source_dir(),
83 '--generate-source',
84@@ -428,7 +429,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
85 test_gresource = custom_target('test.gresource',
86 input : 'test.gresource.xml',
87 output : 'test.gresource',
88- command : [glib_compile_resources,
89+ command : ['glib-compile-resources',
90 '--target=@OUTPUT@',
91 '--sourcedir=' + meson.current_source_dir(),
92 '--sourcedir=' + meson.current_build_dir(),
93@@ -439,7 +440,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
94 test_resources2_c = custom_target('test_resources2.c',
95 input : 'test3.gresource.xml',
96 output : 'test_resources2.c',
97- command : [glib_compile_resources,
98+ command : ['glib-compile-resources',
99 '--target=@OUTPUT@',
100 '--sourcedir=' + meson.current_source_dir(),
101 '--generate',
102@@ -450,7 +451,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
103 test_resources2_h = custom_target('test_resources2.h',
104 input : 'test3.gresource.xml',
105 output : 'test_resources2.h',
106- command : [glib_compile_resources,
107+ command : ['glib-compile-resources',
108 '--target=@OUTPUT@',
109 '--sourcedir=' + meson.current_source_dir(),
110 '--generate',
111@@ -461,7 +462,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
112 test_resources_c = custom_target('test_resources.c',
113 input : 'test2.gresource.xml',
114 output : 'test_resources.c',
115- command : [glib_compile_resources,
116+ command : ['glib-compile-resources',
117 '--target=@OUTPUT@',
118 '--sourcedir=' + meson.current_source_dir(),
119 '--generate-source',
120diff --git a/tests/gobject/Makefile.am b/tests/gobject/Makefile.am
121index 1bcefbe..77e646a 100644
122--- a/tests/gobject/Makefile.am
123+++ b/tests/gobject/Makefile.am
124@@ -51,7 +51,13 @@ if ENABLE_TIMELOOP
125 installed_test_programs += timeloop-closure
126 endif
127
128+# The marshal test requires running a binary, which means we require
129+# glib-native when cross-compiling
130+if !CROSS_COMPILING
131 glib_genmarshal=$(top_builddir)/gobject/glib-genmarshal
132+else
133+glib_genmarshal=$(shell which glib-genmarshal)
134+endif
135
136 testmarshal.h: stamp-testmarshal.h
137 @true