dc25b8d99f
TestGlxinfo fail with a new runtime error:
# glxinfo -B -display :0
name of display: :0
traps: glxinfo[84] trap invalid opcode ip:b73c7027 sp:bf8433c0 error:0 in swrast_dri.so[b6e4c000+64f000]
Illegal instruction
The x86-core2 Bootlin toolchains are built for a core2 CPU [0],
this means that the Bootlin toolchains may use core2-specific
instructions.
The TestGlxinfo test is setup for BR2_x86_core2, so our
executables will also contain core2 instructions.
However, the default Qemu x86 is not guaranteed to emulate all the
instructions specific to core2, causing runtime issues as reported
above.
A similar issue has been fixed by adding Nehalem cpu emulation on
the qemu command line. See 4f565b5222
("support/testing: use Nehalem
cpu emulation for TestGrubX8664EFI").
Set core2duo cpu emulation for TestGlxinfo on the qemu command line.
[0] https://gitlab.com/buildroot.org/toolchains-builder/-/blob/kubu/toolchain-builder-2023.08/configs/arch/x86-core2.config?ref_type=heads
Signed-off-by: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
import os
|
|
|
|
import infra.basetest
|
|
|
|
GLXINFO_TIMEOUT = 120
|
|
|
|
|
|
class TestGlxinfo(infra.basetest.BRTest):
|
|
config = \
|
|
"""
|
|
BR2_x86_core2=y
|
|
BR2_TOOLCHAIN_EXTERNAL=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_GLIBC_STABLE=y
|
|
BR2_LINUX_KERNEL=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.1.26"
|
|
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux.config"
|
|
BR2_PACKAGE_MESA3D_DEMOS=y
|
|
BR2_PACKAGE_MESA3D=y
|
|
BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST=y
|
|
BR2_PACKAGE_MESA3D_OPENGL_GLX=y
|
|
BR2_PACKAGE_XORG7=y
|
|
BR2_PACKAGE_XSERVER_XORG_SERVER=y
|
|
BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
|
|
BR2_TARGET_ROOTFS_EXT2=y
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
BR2_ROOTFS_OVERLAY="{}"
|
|
""".format(
|
|
infra.filepath("tests/package/test_glxinfo/rootfs-overlay"))
|
|
|
|
def wait_for_xserver(self):
|
|
# xserver takes some time to start up
|
|
# The test case fail here if for some reason xserver is not properly installed
|
|
_, _ = self.emulator.run('while [ ! -e /var/run/xorg.pid ]; do sleep 1; done', 120)
|
|
|
|
def login(self):
|
|
img = os.path.join(self.builddir, "images", "rootfs.ext2")
|
|
kern = os.path.join(self.builddir, "images", "bzImage")
|
|
# glxinfo overallocate memory and the minimum that seemed to work was 512MB
|
|
self.emulator.boot(arch="i386",
|
|
kernel=kern,
|
|
kernel_cmdline=["root=/dev/vda console=ttyS0"],
|
|
options=["-M", "pc", "-cpu", "core2duo", "-m", "512",
|
|
"-drive", "file={},if=virtio,format=raw".format(img)])
|
|
self.emulator.login()
|
|
|
|
def test_run(self):
|
|
self.login()
|
|
self.wait_for_xserver()
|
|
|
|
# The test case verifies that the xserver with GLX is working
|
|
cmd = "glxinfo -B -display :0"
|
|
output, exit_code = self.emulator.run(cmd, GLXINFO_TIMEOUT)
|
|
self.assertEqual(exit_code, 0)
|
|
for line in output:
|
|
self.assertNotIn("Error", line)
|
|
# Error case: "Error: couldn't find RGB GLX visual or fbconfig"
|