[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54260] [PATCH 1/3] gnu: ucsim: Don't run tests when cross-compiling
From: |
Simon South |
Subject: |
[bug#54260] [PATCH 1/3] gnu: ucsim: Don't run tests when cross-compiling. |
Date: |
Sat, 5 Mar 2022 07:58:59 -0500 |
* gnu/packages/embedded.scm (ucsim)[arguments]: Skip tests when
cross-compiling.
---
gnu/packages/embedded.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index f7573618b9..43fba510da 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -1501,6 +1501,7 @@ (define-public ucsim
"--enable-m6809-port"
"--enable-p1516-port"
"--enable-st7-port")
+ #:tests? ,(not (%current-target-system)) ; run unless cross-compiling
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-makefiles
--
2.34.0