summaryrefslogtreecommitdiff
path: root/gnu/packages/autotools.scm
diff options
context:
space:
mode:
authorJohn Kehayias <john@guixotic.coop>2025-09-12 17:18:50 -0400
committerMaxim Cournoyer <maxim@guixotic.coop>2025-09-30 16:48:20 +0900
commit2c5cdd27963a772cc3fdbd3a4045ab3dd472c4b8 (patch)
treebb310b144637aedf8174b80f96e9c61fef56761a /gnu/packages/autotools.scm
parent993e34e3d3c782d895378a5cda35d05003ac51af (diff)
gnu: automake: Skip some tests.
These tests fail for unknown reasons locally (even on master, without the changes from this mesa-updates branch) though presumably pass on some machines since there are substitutes available. It appears to be non-deterministic. See discussion at <https://codeberg.org/guix/guix/issues/1257>. * gnu/packages/autotools.scm (automake)[arguments]<#:phases>: Skip some tests. Change-Id: I87099386483efdbb62e42251298f0995f3967179
Diffstat (limited to 'gnu/packages/autotools.scm')
-rw-r--r--gnu/packages/autotools.scm9
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index 7c36ff22c94..84f2444004e 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -13,6 +13,7 @@
13;;; Copyright © 2020, 2023, 2024, 2025 Janneke Nieuwenhuizen <janneke@gnu.org> 13;;; Copyright © 2020, 2023, 2024, 2025 Janneke Nieuwenhuizen <janneke@gnu.org>
14;;; Copyright © 2021 Maxim Cournoyer <maxim@guixotic.coop> 14;;; Copyright © 2021 Maxim Cournoyer <maxim@guixotic.coop>
15;;; Copyright © 2022 Marius Bakke <marius@gnu.org> 15;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
16;;; Copyright © 2025 John Kehayias <john@guixotic.coop>
16;;; 17;;;
17;;; This file is part of GNU Guix. 18;;; This file is part of GNU Guix.
18;;; 19;;;
@@ -460,7 +461,13 @@ Makefile, simplifying the entire process for the developer.")
460 '("t/tags-lisp-space.sh" 461 '("t/tags-lisp-space.sh"
461 ;; This test fails, probably a timestamp thing: 462 ;; This test fails, probably a timestamp thing:
462 ;; make: Nothing to be done for 'all'. 463 ;; make: Nothing to be done for 'all'.
463 "t/remake-aclocal-version-mismatch.sh") 464 "t/remake-aclocal-version-mismatch.sh"
465 ;; Non-deterministic test failures:
466 "t/aclocal-autoconf-version-check.sh"
467 "t/backcompat2.sh"
468 "t/backcompat3.sh"
469 "t/nodef.sh"
470 "t/nodef2.sh")
464 (("^#!.*" all) 471 (("^#!.*" all)
465 (string-append all "exit 77;\n"))))) 472 (string-append all "exit 77;\n")))))
466 #$@(if (%current-target-system) 473 #$@(if (%current-target-system)