mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
Upstream has reworked installed-tests, use them for ptest. Default output format for tests is not TAP, add patch to generate TAP output. Run tests with gnome-desktop-testing-runner, which understands TAP output. Tested on nuc with core-image-clutter and core-image-weston. Reminder that for "pure" wayland (e.g. core-image-weston) you need to "export CLUTTER_BACKEND = wayland" to get past setting the DISPLAY variable expected for X11 backend. (From OE-Core rev: 7656e861be3e7c6111b722761857b4a7c5905712) Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
851 B
Diff
21 lines
851 B
Diff
Configure output from installed-tests to be TAP compliant, such that gnome-desktop-testing-runner properly interprets the results.
|
|
|
|
Upstream-status: Pending
|
|
|
|
Signed-off-by: Tim Orling <TicoTimo@gmail.com>
|
|
|
|
Index: clutter-1.20.0/build/autotools/glib-tap.mk
|
|
===================================================================
|
|
--- clutter-1.20.0.orig/build/autotools/glib-tap.mk
|
|
+++ clutter-1.20.0/build/autotools/glib-tap.mk
|
|
@@ -128,7 +128,8 @@ installed_test_meta_DATA = $(installed_t
|
|
$(AM_V_GEN) (echo '[Test]' > $@.tmp; \
|
|
echo 'Type=session' >> $@.tmp; \
|
|
echo 'TestEnvironment=G_ENABLE_DIAGNOSTIC=0;CLUTTER_ENABLE_DIAGNOSTIC=0;' >> $@.tmp; \
|
|
- echo 'Exec=$(installed_testdir)/$<' >> $@.tmp; \
|
|
+ echo 'Exec=$(installed_testdir)/$< --tap' >> $@.tmp; \
|
|
+ echo 'Output=TAP' >> $@.tmp; \
|
|
mv $@.tmp $@)
|
|
|
|
CLEANFILES += $(installed_test_meta_DATA)
|