guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/09: gnu: kpackage: Work around flaky test.


From: guix-commits
Subject: 07/09: gnu: kpackage: Work around flaky test.
Date: Sun, 3 Dec 2023 17:58:43 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 25de8f3c5e10a31db9c9fc0179000cbfe8f6b47a
Author: Leo Nikkilä <hello@lnikki.la>
AuthorDate: Mon Nov 27 06:11:21 2023 +0200

    gnu: kpackage: Work around flaky test.
    
    When parallel tests are enabled, plasma-querytest can fail with:
    
        5/11 Test  #5: plasma-querytest ....................Subprocess 
aborted***Exception:   0.02 sec
        ********* Start testing of QueryTest *********
        Config: Using QtTest library 5.15.10, Qt 5.15.10 
(arm64-little_endian-lp64 shared (dynamic) release build; by GCC 11.3.0), 
unknown unknown
        PASS   : QueryTest::initTestCase()
        QFATAL : QueryTest::installAndQuery() QThread: Destroyed while thread 
is still running
        FAIL!  : QueryTest::installAndQuery() Received a fatal error.
        Loc: [Unknown file(0)]
        Totals: 1 passed, 1 failed, 0 skipped, 0 blacklisted, 3ms
        ********* Finished testing of QueryTest *********
    
    I'm able to consistently reproduce this on an aarch64-linux machine.
    `guix build --cores=1' can also work around this.
    
    * gnu/packages/kde-frameworks.scm (kpackage): Work around flaky test.
    [arguments]<#:parallel-tests?>: Disable.  Follows what Debian has done.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/kde-frameworks.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 0384baae46..4572d55cb8 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2028,6 +2028,9 @@ covers feedback and persistent events.")
            qtbase-5))
     (arguments
      (list
+      ;; The `plasma-querytest' test is known to fail when tests are run in 
parallel:
+      ;; 
<https://sources.debian.org/src/kpackage/5.107.0-1/debian/changelog/#L92>
+      #:parallel-tests? #f
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'patch



reply via email to

[Prev in Thread] Current Thread [Next in Thread]