guix_mirror_bot pushed a commit to branch wip-riscv-bootstrap in repository guix.
commit e6521aa82eed53f0d96a4d9cfc595b0a2c732b01 Author: Efraim Flashner <efr...@flashner.co.il> AuthorDate: Mon Oct 21 15:00:32 2024 +0300 gnu: findutils-boot0: Adjust the skipped tests on riscv64-linux. * gnu/packages/commencement.scm (findutils-boot0)[arguments]: In the custom 'skip-problematic-tests phase adjust the tests skipped on riscv64-linux. Change-Id: I6252c69d088a27d4989b324ad64378102b7b5de2 --- gnu/packages/commencement.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 4e9614856e..dc74b59ab2 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2815,6 +2815,15 @@ exec " gcc "/bin/" program (("^XFAIL_TESTS =") "XFAIL_TESTS = test-fnmatch ") (("test-pthread-thread\\$\\(EXEEXT\\)") ""))) + ("riscv64-linux" + '(substitute* "gnulib-tests/Makefile" + (("^XFAIL_TESTS =") + (string-append "XFAIL_TESTS = " + "test-hard-locale " + "test-sigprocmask ")) + ;; This test fails non-deterministically. + (("test-setlocale_null-mt-all\\$\\(EXEEXT\\)") "") + (("test-pthread_sigmask1\\$\\(EXEEXT\\)") ""))) (_ ;; XXX: The pthread tests are known to fail at least on ;; ARM; skip them.