[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/13: gnu: node: Disable failing tests on armhf-linux.
From: |
guix-commits |
Subject: |
05/13: gnu: node: Disable failing tests on armhf-linux. |
Date: |
Wed, 26 Feb 2020 15:57:38 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit 5cfc6a88e9fbb9f34855ebd43264266b0201ce50
Author: Marius Bakke <address@hidden>
AuthorDate: Wed Feb 26 17:22:22 2020 +0100
gnu: node: Disable failing tests on armhf-linux.
* gnu/packages/node.scm (node)[arguments]: When building on
armhf-linux, disable several zlib tests.
---
gnu/packages/node.scm | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 296a5e1..eb8c83d 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -74,8 +74,7 @@
#t))))
(build-system gnu-build-system)
(arguments
- ;; TODO: Purge the bundled copies from the source.
- '(#:configure-flags '("--shared-cares"
+ `(#:configure-flags '("--shared-cares"
"--shared-http-parser"
"--shared-libuv"
"--shared-nghttp2"
@@ -121,6 +120,20 @@
;; https://github.com/nodejs/node/issues/31213
(delete-file
"test/parallel/test-net-listen-after-destroying-stdin.js")
+ ;; FIXME: These tests fail on armhf-linux:
+ ;; https://github.com/nodejs/node/issues/31970
+ ,@(if (string-prefix? "arm" (%current-system))
+ '((for-each delete-file
+ '("test/parallel/test-zlib.js"
+ "test/parallel/test-zlib-brotli.js"
+ "test/parallel/test-zlib-brotli-flush.js"
+
"test/parallel/test-zlib-brotli-from-brotli.js"
+
"test/parallel/test-zlib-brotli-from-string.js"
+
"test/parallel/test-zlib-convenience-methods.js"
+ "test/parallel/test-zlib-random-byte-pipes.js"
+
"test/parallel/test-zlib-write-after-flush.js")))
+ '())
+
;; These tests have an expiry date: they depend on the validity of
;; TLS certificates that are bundled with the source. We want
this
;; package to be reproducible forever, so remove those.
- branch master updated (b68f5a6 -> e524b57), guix-commits, 2020/02/26
- 01/13: gnu: pocl: Build with LLVM@9., guix-commits, 2020/02/26
- 02/13: gnu: LibUV: Add version 1.34.2., guix-commits, 2020/02/26
- 03/13: gnu: nghttp2: Add version 1.40.0., guix-commits, 2020/02/26
- 06/13: gnu: clang: Fix C++ search path handling on non-x86_64., guix-commits, 2020/02/26
- 04/13: gnu: node: Update to 10.19.0., guix-commits, 2020/02/26
- 05/13: gnu: node: Disable failing tests on armhf-linux.,
guix-commits <=
- 08/13: gnu: emacs-elixir-mode: Fix capitalization in description., guix-commits, 2020/02/26
- 10/13: gnu: benchmark: Add bonnie++., guix-commits, 2020/02/26
- 07/13: gnu: clang: Move version conditionals out of the builder., guix-commits, 2020/02/26
- 11/13: gnu: musl: Update to 1.2.0., guix-commits, 2020/02/26
- 12/13: gnu: vim-full: Describe differences from vim., guix-commits, 2020/02/26
- 09/13: gnu: emacs-eacl: Fix typo in description., guix-commits, 2020/02/26
- 13/13: gnu: awscli: Update to 1.18.6., guix-commits, 2020/02/26