summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorYelninei <yelninei@tutamail.com>2025-08-04 12:50:19 +0000
committerAndreas Enge <andreas@enge.fr>2025-10-19 12:57:28 +0200
commit6eb5823e2e1932c3f6793764b9f1fb7988d04667 (patch)
tree13a482666152db9f9bc9f628cb6d89d7701d1bd5 /gnu
parent2bb04f366147cf39b185559e0ef2026be9ae4dd2 (diff)
gnu: re2c: Skip tests on the Hurd.
* gnu/packages/re2c.scm (re2c): Skip tests on hurd systems. Change-Id: If111a763cfb79491b4a27009b2ca383f01fe3e5b Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/re2c.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/re2c.scm b/gnu/packages/re2c.scm
index 3eb898dd4c9..c14ead297e9 100644
--- a/gnu/packages/re2c.scm
+++ b/gnu/packages/re2c.scm
@@ -43,15 +43,18 @@
"07ysqgdm0h566a8lwnpdgycp93vz7zskzihsgah3bla0ycj2pp69"))))
(build-system gnu-build-system)
(arguments
- (if (target-arm32?)
- (list #:phases
+ (list #:tests? (not (or (%current-target-system)
+ ;; run_tests.py hangs
+ (system-hurd?)))
+ #:phases
+ (if (target-arm32?)
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-sources
(lambda _
(invoke "patch" "-p1" "--force" "--input"
#$(local-file (search-patch
- "re2c-Use-maximum-alignment.patch")))))))
- '()))
+ "re2c-Use-maximum-alignment.patch"))))))
+ #~%standard-phases)))
(native-inputs
(list python)) ; for the test driver
(home-page "https://re2c.org/")