diff mbox series

[1/2] support/testing: TestGlxinfo: bump kernel version to 6.1.x

Message ID 20230611115748.801929-1-romain.naour@gmail.com
State Accepted
Headers show
Series [1/2] support/testing: TestGlxinfo: bump kernel version to 6.1.x | expand

Commit Message

Romain Naour June 11, 2023, 11:57 a.m. UTC
The kernel 6.1.x is the latest LTS version.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 support/testing/tests/package/test_glxinfo.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni July 12, 2023, 10:05 a.m. UTC | #1
Hello Romain,

On Sun, 11 Jun 2023 13:57:47 +0200
Romain Naour <romain.naour@gmail.com> wrote:

> The kernel 6.1.x is the latest LTS version.
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
>  support/testing/tests/package/test_glxinfo.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks, I've applied both. However, did you notice that this GlxInfo
test is currently broken? See
https://gitlab.com/buildroot.org/buildroot/-/jobs/4621046326. It fails
at runtime because the glxinfo command cannot be found in the
filesystem (I have not investigated further than that).

Best regards,

Thomas
Romain Naour July 12, 2023, 12:52 p.m. UTC | #2
Hello Thomas,

Le 12/07/2023 à 12:05, Thomas Petazzoni via buildroot a écrit :
> Hello Romain,
> 
> On Sun, 11 Jun 2023 13:57:47 +0200
> Romain Naour <romain.naour@gmail.com> wrote:
> 
>> The kernel 6.1.x is the latest LTS version.
>>
>> Signed-off-by: Romain Naour <romain.naour@gmail.com>
>> ---
>>  support/testing/tests/package/test_glxinfo.py | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Thanks, I've applied both. However, did you notice that this GlxInfo
> test is currently broken? See
> https://gitlab.com/buildroot.org/buildroot/-/jobs/4621046326. It fails
> at runtime because the glxinfo command cannot be found in the
> filesystem (I have not investigated further than that).

This is something new, I'm wondering if it's related to the recent mesa3d-demo
version bump to 9.0.0?

I'll take a look.

Best regards,
Romain


> 
> Best regards,
> 
> Thomas
Romain Naour July 12, 2023, 2:09 p.m. UTC | #3
Le 12/07/2023 à 14:52, Romain Naour a écrit :
> Hello Thomas,
> 
> Le 12/07/2023 à 12:05, Thomas Petazzoni via buildroot a écrit :
>> Hello Romain,
>>
>> On Sun, 11 Jun 2023 13:57:47 +0200
>> Romain Naour <romain.naour@gmail.com> wrote:
>>
>>> The kernel 6.1.x is the latest LTS version.
>>>
>>> Signed-off-by: Romain Naour <romain.naour@gmail.com>
>>> ---
>>>  support/testing/tests/package/test_glxinfo.py | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> Thanks, I've applied both. However, did you notice that this GlxInfo
>> test is currently broken? See
>> https://gitlab.com/buildroot.org/buildroot/-/jobs/4621046326. It fails
>> at runtime because the glxinfo command cannot be found in the
>> filesystem (I have not investigated further than that).
> 
> This is something new, I'm wondering if it's related to the recent mesa3d-demo
> version bump to 9.0.0?
> 
> I'll take a look.

Indeed, reverting the mesa3d-demos bump fixes the issue.
The glut library seems not correctly detected by this new release.

mesa-demos 9.0.0

Run-time dependency glut found: NO (tried pkgconfig and cmake)
Has header "GL/glut.h" : NO

mesa-demos 8.5.0

Run-time dependency glu found: YES 9.0.2

Best regards,
Romain


> 
> Best regards,
> Romain
> 
> 
>>
>> Best regards,
>>
>> Thomas
>
Thomas Petazzoni July 12, 2023, 2:40 p.m. UTC | #4
On Wed, 12 Jul 2023 16:09:38 +0200
Romain Naour <romain.naour@smile.fr> wrote:

> Indeed, reverting the mesa3d-demos bump fixes the issue.
> The glut library seems not correctly detected by this new release.
> 
> mesa-demos 9.0.0
> 
> Run-time dependency glut found: NO (tried pkgconfig and cmake)
> Has header "GL/glut.h" : NO
> 
> mesa-demos 8.5.0
> 
> Run-time dependency glu found: YES 9.0.2

So it's a regression caused by commit
80304d9911f34f8a0173a4f37d52f93177478cc7 from Bernd. Bernd, could you have a look?

Thanks a lot!

Thomas
diff mbox series

Patch

diff --git a/support/testing/tests/package/test_glxinfo.py b/support/testing/tests/package/test_glxinfo.py
index 79be596635..c7d62a690b 100644
--- a/support/testing/tests/package/test_glxinfo.py
+++ b/support/testing/tests/package/test_glxinfo.py
@@ -20,7 +20,7 @@  class TestGlxinfo(infra.basetest.BRTest):
         BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC=y
         BR2_LINUX_KERNEL=y
         BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-        BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.204"
+        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