From fce707186af8be1dccd46fdf609649e5dc2b9d23 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 30 May 2024 11:44:12 +0300 Subject: gnu: mozjs: Fix build on riscv64-linux. * gnu/packages/gnuzilla.scm (mozjs)[arguments]: When building for riscv64-linux adjust the 'adjust-tests phase to skip 2 more tests skipped by upstream. Change-Id: Ia5fbe6782e3d1d8e1904cdf49a35e0666837b277 --- gnu/packages/gnuzilla.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 814b610bba..510cf1baab 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -176,6 +176,14 @@ ((".*killed process should not have exitStatus.*") "")) + ;; This was fixed sometime between 102.15.1 and 115.11.0. + ;; These tests are supposed to be skipped on all 64-bit systems. + #$@(if (target-riscv64?) + #~((substitute* '("non262/Array/regress-157652.js" + "non262/regress/regress-422348.js") + (("mips64") "mips64|riscv64"))) + #~()) + ;; The test suite expects a lightly patched ICU. Disable tests ;; that do not work with the system version. See ;; "intl/icu-patches" for clues. -- cgit v1.2.3 commitdiff
path: root/tests/publish.scm
AgeCommit message (Expand)Author
2024-04-15utils: Don’t re-export ‘call-with-temporary-output-file’....Ludovic Courtès
2022-04-29publish: Send uncached narinfo replies from the main thread....Ludovic Courtès
2022-02-14publish: Do not sign the URL/Compression/FileSize narinfo fields....Ludovic Courtès
2022-01-19tests: Adjust to gzip as the default log compression....Ludovic Courtès