Skip to content
Snippets Groups Projects
Commit e713f88e authored by Jonas Höppner's avatar Jonas Höppner
Browse files

emc-test-suite: Disable bball using glx for xwayland

With the layer upgrade there seem to be some build problems and we do
not really need this variant currently.
parent 0859b233
No related branches found
No related tags found
1 merge request!608emc-test-suite: Disable bball using glx for xwayland
......@@ -53,11 +53,14 @@ LDFLAGS:prepend = " -L${STAGING_DIR_TARGET}/opt/ltp/lib "
CLEANBROKEN = "1"
USE_X11 = "${@bb.utils.contains("DISTRO_FEATURES", "x11", "yes", "no", d)}"
WAYLAND_ENABLED = "${@bb.utils.contains("DISTRO_FEATURES", "wayland", "yes", "no", d)}"
X11_ENABLED = "${@bb.utils.contains("DISTRO_FEATURES", "x11", "yes", "no", d)}"
do_compile () {
oe_runmake all_tests
if [ "${USE_X11}" = "yes" ]; then
# Currently the x11 tests do not work with xwayland, disable them for now
if [ "${X11_ENABLED}" = "yes" && "${WAYLAND_ENABLED}" = "no"]; then
oe_runmake all_tests_x11
fi
oe_runmake all_tests_sdl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment