guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: libplist: Run tests sequentially.


From: guix-commits
Subject: 01/01: gnu: libplist: Run tests sequentially.
Date: Tue, 30 Apr 2019 10:47:50 -0400 (EDT)

civodul pushed a commit to branch version-1.0.0
in repository guix.

commit e4b2866cd015a52973063c0b389cf328ef0b9d18
Author: Ludovic Courtès <address@hidden>
Date:   Tue Apr 30 16:44:12 2019 +0200

    gnu: libplist: Run tests sequentially.
    
    Fixes <https://bugs.gnu.org/35501>.
    Reported by Brendan Tildesley <address@hidden>.
    
    * gnu/packages/libusb.scm (libplist)[arguments]: New field.
---
 gnu/packages/libusb.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm
index 61329d2..5ef62e4 100644
--- a/gnu/packages/libusb.scm
+++ b/gnu/packages/libusb.scm
@@ -314,6 +314,11 @@ wrapper for accessing libusb-1.0.")
                (base32
                 "00pnh9zf3iwdji2faccns7vagbmbrwbj9a8zp9s53a6rqaa9czis"))))
     (build-system gnu-build-system)
+    (arguments
+     ;; Tests fail randomly when run in parallel because several of them write
+     ;; and read to/from the same file--e.g., "4.plist" is accessed by
+     ;; 'large.test' and 'largecmp.test'.
+     '(#:parallel-tests? #f))
     (inputs
      `(("python" ,python)))
     (native-inputs



reply via email to

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