guix-commits
[Top][All Lists]
Advanced

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

07/15: gnu: ucsim: Disable tests.


From: guix-commits
Subject: 07/15: gnu: ucsim: Disable tests.
Date: Thu, 28 Sep 2023 05:46:44 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 9698a23f52a7b7ecc53b1aa4ab43ab846fc230d7
Author: Simon South <simon@simonsouth.net>
AuthorDate: Wed Sep 27 10:55:35 2023 -0400

    gnu: ucsim: Disable tests.
    
    * gnu/packages/embedded.scm (ucsim)[arguments]: Add #:tests?.
    [native-inputs]: Remove sdcc unconditionally.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/embedded.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 9d07bc4a55..517e5bcbf2 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -1610,15 +1610,14 @@ handling communication with eBUS devices connected to a 
2-wire bus system
           (add-after 'unpack 'patch-makefiles
             (lambda _
               (substitute* (find-files "." "(\\.mk$|\\.in$)")
-                (("/bin/sh") (which "sh"))))))))
+                (("/bin/sh") (which "sh"))))))
+      ;; μCsim's regression-test suite is of little use in this context since
+      ;; it doesn't stop or return an error code when it encounters a problem.
+      #:tests? #f))
     (inputs
      (list ncurses))
     (native-inputs
-     (append (list bison flex)
-             ;; Certain tests use assemblers provided by SDCC.
-             (if (not (%current-target-system))
-                 (list sdcc)
-                 '())))
+     (list bison flex))
     (home-page "http://mazsola.iit.uni-miskolc.hu/ucsim/";)
     (synopsis "Simulators for various microcontroller families")
     (description "μCsim is a collection of software simulators for



reply via email to

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