unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#70936] [PATCH gnome-team 1/3] gnu: gst-plugins-bad: Ignore elements_netsim test.
  2024-05-14 12:15 [bug#70936] [PATCH gnome-team 0/3] Fix some broken tests Liliana Marie Prikler
@ 2024-05-14  7:27 ` Liliana Marie Prikler
  2024-05-15  1:29   ` Maxim Cournoyer
  2024-05-14  7:39 ` [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread Liliana Marie Prikler
  2024-05-14 12:10 ` [bug#70936] [PATCH gnome-team 3/3] gnu: qemu: Disable more tests Liliana Marie Prikler
  2 siblings, 1 reply; 13+ messages in thread
From: Liliana Marie Prikler @ 2024-05-14  7:27 UTC (permalink / raw)
  To: 70936; +Cc: liliana.prikler, maxim.cournoyer, vivien

* gnu/packages/gstreamer.scm (gst-plugins-bad)[adjust-tests]: Add
“elements/netsim.c” to the list of ignored test files.
---
 gnu/packages/gstreamer.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 2705e245ea..ad08285181 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -796,6 +796,10 @@ (define-public gst-plugins-bad
                   ;; The 'elements_curlhttpsrc' test sometimes times out.
                   ((".*'elements/curlhttpsrc\\.c'.*") "")
 
+                  ;; Unexpected critical/warning, see
+                  ;; <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3000>
+                  ((".*'elements/netsim\\.c'.*") "")
+
                   ;; TODO: Figure out why this test fails on riscv64-linux.
                   #$@(if (target-riscv64?)
                          `((("'elements/viewfinderbin\\.c'\\].*],")
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread.
  2024-05-14 12:15 [bug#70936] [PATCH gnome-team 0/3] Fix some broken tests Liliana Marie Prikler
  2024-05-14  7:27 ` [bug#70936] [PATCH gnome-team 1/3] gnu: gst-plugins-bad: Ignore elements_netsim test Liliana Marie Prikler
@ 2024-05-14  7:39 ` Liliana Marie Prikler
  2024-05-15  1:33   ` Maxim Cournoyer
  2024-05-15  1:34   ` Maxim Cournoyer
  2024-05-14 12:10 ` [bug#70936] [PATCH gnome-team 3/3] gnu: qemu: Disable more tests Liliana Marie Prikler
  2 siblings, 2 replies; 13+ messages in thread
From: Liliana Marie Prikler @ 2024-05-14  7:39 UTC (permalink / raw)
  To: 70936; +Cc: liliana.prikler, maxim.cournoyer, vivien

* gnu/packages/qt.scm (qtbase)[check]: Add “tst_qsqlthread” to the list of
ignored tests.
---
 gnu/packages/qt.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 13f54fcc5d..1416c3a36c 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -899,6 +899,9 @@ (define-public qtbase
                        ;; TODO: when core-updates is merged, check again.
                        "tst_selftests"
 
+                       ;; The 'tst_qsqlthread' test sometimes fails.
+                       "tst_qsqlthread"
+
                        ;; The 'tst_qsystemsemaphore' test sometimes fails.
                        "tst_qsystemsemaphore"
                        ;; The 'tst_moc' test fails with "'fi.exists()' returned FALSE".
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 3/3] gnu: qemu: Disable more tests.
  2024-05-14 12:15 [bug#70936] [PATCH gnome-team 0/3] Fix some broken tests Liliana Marie Prikler
  2024-05-14  7:27 ` [bug#70936] [PATCH gnome-team 1/3] gnu: gst-plugins-bad: Ignore elements_netsim test Liliana Marie Prikler
  2024-05-14  7:39 ` [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread Liliana Marie Prikler
@ 2024-05-14 12:10 ` Liliana Marie Prikler
  2024-05-15  1:40   ` Maxim Cournoyer
  2024-05-15  1:41   ` Maxim Cournoyer
  2 siblings, 2 replies; 13+ messages in thread
From: Liliana Marie Prikler @ 2024-05-14 12:10 UTC (permalink / raw)
  To: 70936; +Cc: liliana.prikler, maxim.cournoyer, vivien

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1138 bytes --]

* gnu/packages/virtualization.scm (qemu)[disable-unusable-tests]: Also disable
qtest/ahci-test and qemu-iotests/copy-before-write.
---
 gnu/packages/virtualization.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 34cccd6550..5389af62f0 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -305,7 +305,12 @@ (define-public qemu
               (substitute* "tests/qtest/meson.build"
                 ;; These tests fail to get the expected number of tests
                 ;; on arm platforms.
-                (("'arm-cpu-features',") ""))))
+                (("'arm-cpu-features',") "")
+                ;; XXX: Why does this (sometimes) fail?
+                (("\\['ahci-test'\\]") "[]"))
+              ;; This test appears to be missing permissions.
+              ;; Very sus 🤔
+              (delete-file "tests/qemu-iotests/tests/copy-before-write")))
           #$@(if (target-riscv64?)
                  '((add-after 'unpack 'disable-some-tests
                      (lambda _
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 0/3] Fix some broken tests.
@ 2024-05-14 12:15 Liliana Marie Prikler
  2024-05-14  7:27 ` [bug#70936] [PATCH gnome-team 1/3] gnu: gst-plugins-bad: Ignore elements_netsim test Liliana Marie Prikler
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Liliana Marie Prikler @ 2024-05-14 12:15 UTC (permalink / raw)
  To: 70936; +Cc: liliana.prikler, maxim.cournoyer, vivien

QA seems to dislike at least some major packages with our recent changes.
It's quite possible that some of them are flaky tests.

Liliana Marie Prikler (3):
  gnu: gst-plugins-bad: Ignore elements_netsim test.
  gnu: qtbase: Ignore tst_qsqlthread.
  gnu: qemu: Disable more tests.

 gnu/packages/gstreamer.scm      | 4 ++++
 gnu/packages/qt.scm             | 3 +++
 gnu/packages/virtualization.scm | 7 ++++++-
 3 files changed, 13 insertions(+), 1 deletion(-)


base-commit: 9185efbc6cdaf8f7d83bf8fc90f44e25131b9f88
-- 
2.41.0





^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 1/3] gnu: gst-plugins-bad: Ignore elements_netsim test.
  2024-05-14  7:27 ` [bug#70936] [PATCH gnome-team 1/3] gnu: gst-plugins-bad: Ignore elements_netsim test Liliana Marie Prikler
@ 2024-05-15  1:29   ` Maxim Cournoyer
  0 siblings, 0 replies; 13+ messages in thread
From: Maxim Cournoyer @ 2024-05-15  1:29 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 70936, vivien

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> * gnu/packages/gstreamer.scm (gst-plugins-bad)[adjust-tests]: Add
> “elements/netsim.c” to the list of ignored test files.

Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail>

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread.
  2024-05-14  7:39 ` [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread Liliana Marie Prikler
@ 2024-05-15  1:33   ` Maxim Cournoyer
  2024-05-15  1:34   ` Maxim Cournoyer
  1 sibling, 0 replies; 13+ messages in thread
From: Maxim Cournoyer @ 2024-05-15  1:33 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 70936, vivien

Hi Liliana,

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> * gnu/packages/qt.scm (qtbase)[check]: Add “tst_qsqlthread” to the list of
> ignored tests.
> ---
>  gnu/packages/qt.scm | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
> index 13f54fcc5d..1416c3a36c 100644
> --- a/gnu/packages/qt.scm
> +++ b/gnu/packages/qt.scm
> @@ -899,6 +899,9 @@ (define-public qtbase
>                         ;; TODO: when core-updates is merged, check again.
>                         "tst_selftests"
>  
> +                       ;; The 'tst_qsqlthread' test sometimes fails.
> +                       "tst_qsqlthread"
> +

This was reported by myself [0] and is currently skipped only for
target-ppc64le?.  We should probably skip it for every architecture if
you've encountered it on x86_64 (I'm assuming).

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread.
  2024-05-14  7:39 ` [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread Liliana Marie Prikler
  2024-05-15  1:33   ` Maxim Cournoyer
@ 2024-05-15  1:34   ` Maxim Cournoyer
  2024-05-16  5:13     ` Liliana Marie Prikler
  1 sibling, 1 reply; 13+ messages in thread
From: Maxim Cournoyer @ 2024-05-15  1:34 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 70936, vivien

Hi Liliana,

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> * gnu/packages/qt.scm (qtbase)[check]: Add “tst_qsqlthread” to the list of
> ignored tests.
> ---
>  gnu/packages/qt.scm | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
> index 13f54fcc5d..1416c3a36c 100644
> --- a/gnu/packages/qt.scm
> +++ b/gnu/packages/qt.scm
> @@ -899,6 +899,9 @@ (define-public qtbase
>                         ;; TODO: when core-updates is merged, check again.
>                         "tst_selftests"
>  
> +                       ;; The 'tst_qsqlthread' test sometimes fails.
> +                       "tst_qsqlthread"
> +

This was reported by myself [0] and is currently skipped only for
target-ppc64le?.  We should probably skip it for every architecture if
you've encountered it on x86_64 (I'm assuming).

[0]  https://bugreports.qt.io/browse/QTBUG-117114?jql=text%20~%20%22tst_qsqlthread%22

Could you adjust and send a v2?

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 3/3] gnu: qemu: Disable more tests.
  2024-05-14 12:10 ` [bug#70936] [PATCH gnome-team 3/3] gnu: qemu: Disable more tests Liliana Marie Prikler
@ 2024-05-15  1:40   ` Maxim Cournoyer
  2024-05-15  1:41   ` Maxim Cournoyer
  1 sibling, 0 replies; 13+ messages in thread
From: Maxim Cournoyer @ 2024-05-15  1:40 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 70936, vivien

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> * gnu/packages/virtualization.scm (qemu)[disable-unusable-tests]: Also disable
> qtest/ahci-test and qemu-iotests/copy-before-write.
> ---
>  gnu/packages/virtualization.scm | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
> index 34cccd6550..5389af62f0 100644
> --- a/gnu/packages/virtualization.scm
> +++ b/gnu/packages/virtualization.scm
> @@ -305,7 +305,12 @@ (define-public qemu
>                (substitute* "tests/qtest/meson.build"
>                  ;; These tests fail to get the expected number of tests
>                  ;; on arm platforms.
> -                (("'arm-cpu-features',") ""))))
> +                (("'arm-cpu-features',") "")
> +                ;; XXX: Why does this (sometimes) fail?

Someone reported it already upstream:
<https://gitlab.com/qemu-project/qemu/-/issues/2121>.  Please add a
reference to it.

> +                (("\\['ahci-test'\\]") "[]"))
> +              ;; This test appears to be missing permissions.
> +              ;; Very sus 🤔

How can it be missing permissions if it is sometimes working?  Perhaps
more something racy where the file hasn't been created yet.  I'd
personally rather not see emojis or comments of dubious utility ("Very
suspect") in the source.  Perhaps add a short excerpt of the error for
the next curious person.

> +              (delete-file "tests/qemu-iotests/tests/copy-before-write")))
>            #$@(if (target-riscv64?)
>                   '((add-after 'unpack 'disable-some-tests
>                       (lambda _

Otherwise, LGTM!

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 3/3] gnu: qemu: Disable more tests.
  2024-05-14 12:10 ` [bug#70936] [PATCH gnome-team 3/3] gnu: qemu: Disable more tests Liliana Marie Prikler
  2024-05-15  1:40   ` Maxim Cournoyer
@ 2024-05-15  1:41   ` Maxim Cournoyer
  1 sibling, 0 replies; 13+ messages in thread
From: Maxim Cournoyer @ 2024-05-15  1:41 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 70936, vivien

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> * gnu/packages/virtualization.scm (qemu)[disable-unusable-tests]: Also disable
> qtest/ahci-test and qemu-iotests/copy-before-write.
> ---
>  gnu/packages/virtualization.scm | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
> index 34cccd6550..5389af62f0 100644
> --- a/gnu/packages/virtualization.scm
> +++ b/gnu/packages/virtualization.scm
> @@ -305,7 +305,12 @@ (define-public qemu
>                (substitute* "tests/qtest/meson.build"
>                  ;; These tests fail to get the expected number of tests
>                  ;; on arm platforms.
> -                (("'arm-cpu-features',") ""))))
> +                (("'arm-cpu-features',") "")
> +                ;; XXX: Why does this (sometimes) fail?

Someone reported it already upstream:
<https://gitlab.com/qemu-project/qemu/-/issues/2121>.  Please add a
reference to it.

> +                (("\\['ahci-test'\\]") "[]"))
> +              ;; This test appears to be missing permissions.
> +              ;; Very sus 🤔

How can it be missing permissions if it is sometimes working?  Perhaps
more something racy where the file hasn't been created yet.  I'd
personally rather not see emojis or comments of dubious utility ("Very
suspect") in the source.  Perhaps add a short excerpt of the error for
the next curious person.

> +              (delete-file "tests/qemu-iotests/tests/copy-before-write")))
>            #$@(if (target-riscv64?)
>                   '((add-after 'unpack 'disable-some-tests
>                       (lambda _

Otherwise, LGTM, with the added reference to the upstream issue.  Thanks
for taking the time to address flaky tests!  They are a real drag when
left unchecked.

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread.
  2024-05-15  1:34   ` Maxim Cournoyer
@ 2024-05-16  5:13     ` Liliana Marie Prikler
  2024-05-16 12:44       ` Maxim Cournoyer
  0 siblings, 1 reply; 13+ messages in thread
From: Liliana Marie Prikler @ 2024-05-16  5:13 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 70936, vivien

Am Dienstag, dem 14.05.2024 um 21:34 -0400 schrieb Maxim Cournoyer:
> Hi Liliana,
> 
> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> 
> > * gnu/packages/qt.scm (qtbase)[check]: Add “tst_qsqlthread” to the
> > list of
> > ignored tests.
> > ---
> >  gnu/packages/qt.scm | 3 +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
> > index 13f54fcc5d..1416c3a36c 100644
> > --- a/gnu/packages/qt.scm
> > +++ b/gnu/packages/qt.scm
> > @@ -899,6 +899,9 @@ (define-public qtbase
> >                         ;; TODO: when core-updates is merged, check
> > again.
> >                         "tst_selftests"
> >  
> > +                       ;; The 'tst_qsqlthread' test sometimes
> > fails.
> > +                       "tst_qsqlthread"
> > +
> 
> This was reported by myself [0] and is currently skipped only for
> target-ppc64le?.  We should probably skip it for every architecture
> if you've encountered it on x86_64 (I'm assuming).
> 
> [0] 
> https://bugreports.qt.io/browse/QTBUG-117114?jql=text%20~%20%22tst_qsqlthread%22
Should I rebase gnome-team on master again, so that I can drop the
condition?

Cheers




^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread.
  2024-05-16  5:13     ` Liliana Marie Prikler
@ 2024-05-16 12:44       ` Maxim Cournoyer
  2024-05-16 13:15         ` Liliana Marie Prikler
  0 siblings, 1 reply; 13+ messages in thread
From: Maxim Cournoyer @ 2024-05-16 12:44 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 70936, vivien

Hi Liliana,

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> Am Dienstag, dem 14.05.2024 um 21:34 -0400 schrieb Maxim Cournoyer:
>> Hi Liliana,
>> 
>> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
>> 
>> > * gnu/packages/qt.scm (qtbase)[check]: Add “tst_qsqlthread” to the
>> > list of
>> > ignored tests.
>> > ---
>> >  gnu/packages/qt.scm | 3 +++
>> >  1 file changed, 3 insertions(+)
>> > 
>> > diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
>> > index 13f54fcc5d..1416c3a36c 100644
>> > --- a/gnu/packages/qt.scm
>> > +++ b/gnu/packages/qt.scm
>> > @@ -899,6 +899,9 @@ (define-public qtbase
>> >                         ;; TODO: when core-updates is merged, check
>> > again.
>> >                         "tst_selftests"
>> >  
>> > +                       ;; The 'tst_qsqlthread' test sometimes
>> > fails.
>> > +                       "tst_qsqlthread"
>> > +
>> 
>> This was reported by myself [0] and is currently skipped only for
>> target-ppc64le?.  We should probably skip it for every architecture
>> if you've encountered it on x86_64 (I'm assuming).
>> 
>> [0] 
>> https://bugreports.qt.io/browse/QTBUG-117114?jql=text%20~%20%22tst_qsqlthread%22
> Should I rebase gnome-team on master again, so that I can drop the
> condition?

Sounds reasonable, if you didn't have that conditional skip on
gnome-team already.

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread.
  2024-05-16 12:44       ` Maxim Cournoyer
@ 2024-05-16 13:15         ` Liliana Marie Prikler
  2024-05-16 16:06           ` Maxim Cournoyer
  0 siblings, 1 reply; 13+ messages in thread
From: Liliana Marie Prikler @ 2024-05-16 13:15 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 70936, vivien

Am Donnerstag, dem 16.05.2024 um 08:44 -0400 schrieb Maxim Cournoyer:
> Hi Liliana,
> 
> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> 
> > Am Dienstag, dem 14.05.2024 um 21:34 -0400 schrieb Maxim Cournoyer:
> > > Hi Liliana,
> > > 
> > > Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> > > 
> > > > * gnu/packages/qt.scm (qtbase)[check]: Add “tst_qsqlthread” to
> > > > the
> > > > list of
> > > > ignored tests.
> > > > ---
> > > >  gnu/packages/qt.scm | 3 +++
> > > >  1 file changed, 3 insertions(+)
> > > > 
> > > > diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
> > > > index 13f54fcc5d..1416c3a36c 100644
> > > > --- a/gnu/packages/qt.scm
> > > > +++ b/gnu/packages/qt.scm
> > > > @@ -899,6 +899,9 @@ (define-public qtbase
> > > >                         ;; TODO: when core-updates is merged,
> > > > check
> > > > again.
> > > >                         "tst_selftests"
> > > >  
> > > > +                       ;; The 'tst_qsqlthread' test sometimes
> > > > fails.
> > > > +                       "tst_qsqlthread"
> > > > +
> > > 
> > > This was reported by myself [0] and is currently skipped only for
> > > target-ppc64le?.  We should probably skip it for every
> > > architecture
> > > if you've encountered it on x86_64 (I'm assuming).
> > > 
> > > [0] 
> > > https://bugreports.qt.io/browse/QTBUG-117114?jql=text%20~%20%22tst_qsqlthread%22
> > Should I rebase gnome-team on master again, so that I can drop the
> > condition?
> 
> Sounds reasonable, if you didn't have that conditional skip on
> gnome-team already.
I don't see it even after the rebase… is that on master yet or
elsewhere?

Anyhow, I think I forgot to link the bug report appropriately before
pushing, will do so when CI lights green.

Cheers





^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread.
  2024-05-16 13:15         ` Liliana Marie Prikler
@ 2024-05-16 16:06           ` Maxim Cournoyer
  0 siblings, 0 replies; 13+ messages in thread
From: Maxim Cournoyer @ 2024-05-16 16:06 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 70936, vivien

Hi Liliana,

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> Am Donnerstag, dem 16.05.2024 um 08:44 -0400 schrieb Maxim Cournoyer:
>> Hi Liliana,
>> 
>> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
>> 
>> > Am Dienstag, dem 14.05.2024 um 21:34 -0400 schrieb Maxim Cournoyer:
>> > > Hi Liliana,
>> > > 
>> > > Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
>> > > 
>> > > > * gnu/packages/qt.scm (qtbase)[check]: Add “tst_qsqlthread” to
>> > > > the
>> > > > list of
>> > > > ignored tests.
>> > > > ---
>> > > >  gnu/packages/qt.scm | 3 +++
>> > > >  1 file changed, 3 insertions(+)
>> > > > 
>> > > > diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
>> > > > index 13f54fcc5d..1416c3a36c 100644
>> > > > --- a/gnu/packages/qt.scm
>> > > > +++ b/gnu/packages/qt.scm
>> > > > @@ -899,6 +899,9 @@ (define-public qtbase
>> > > >                         ;; TODO: when core-updates is merged,
>> > > > check
>> > > > again.
>> > > >                         "tst_selftests"
>> > > >  
>> > > > +                       ;; The 'tst_qsqlthread' test sometimes
>> > > > fails.
>> > > > +                       "tst_qsqlthread"
>> > > > +
>> > > 
>> > > This was reported by myself [0] and is currently skipped only for
>> > > target-ppc64le?.  We should probably skip it for every
>> > > architecture
>> > > if you've encountered it on x86_64 (I'm assuming).
>> > > 
>> > > [0] 
>> > > https://bugreports.qt.io/browse/QTBUG-117114?jql=text%20~%20%22tst_qsqlthread%22
>> > Should I rebase gnome-team on master again, so that I can drop the
>> > condition?
>> 
>> Sounds reasonable, if you didn't have that conditional skip on
>> gnome-team already.
> I don't see it even after the rebase… is that on master yet or
> elsewhere?
>
> Anyhow, I think I forgot to link the bug report appropriately before
> pushing, will do so when CI lights green.

It's from commit 625fa5745e3, dated 26th of March 2024.

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-05-16 16:09 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-14 12:15 [bug#70936] [PATCH gnome-team 0/3] Fix some broken tests Liliana Marie Prikler
2024-05-14  7:27 ` [bug#70936] [PATCH gnome-team 1/3] gnu: gst-plugins-bad: Ignore elements_netsim test Liliana Marie Prikler
2024-05-15  1:29   ` Maxim Cournoyer
2024-05-14  7:39 ` [bug#70936] [PATCH gnome-team 2/3] gnu: qtbase: Ignore tst_qsqlthread Liliana Marie Prikler
2024-05-15  1:33   ` Maxim Cournoyer
2024-05-15  1:34   ` Maxim Cournoyer
2024-05-16  5:13     ` Liliana Marie Prikler
2024-05-16 12:44       ` Maxim Cournoyer
2024-05-16 13:15         ` Liliana Marie Prikler
2024-05-16 16:06           ` Maxim Cournoyer
2024-05-14 12:10 ` [bug#70936] [PATCH gnome-team 3/3] gnu: qemu: Disable more tests Liliana Marie Prikler
2024-05-15  1:40   ` Maxim Cournoyer
2024-05-15  1:41   ` Maxim Cournoyer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).