[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: node: Disable tests that fail with openssl@1.1.1d.
From: |
guix-commits |
Subject: |
03/03: gnu: node: Disable tests that fail with openssl@1.1.1d. |
Date: |
Fri, 20 Sep 2019 11:30:20 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit aae65db560bd146ba47774cca46056d72be2a5d4
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Mon Sep 16 14:34:17 2019 +0200
gnu: node: Disable tests that fail with openssl@1.1.1d.
Work around <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=37386>.
* gnu/packages/node.scm (node)[arguments]: Disable failing tests.
---
gnu/packages/node.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index fc43fcb..bf585a9 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -45,6 +45,7 @@
(define-public node
(package
(name "node")
+ ;; XXX When updating, check if tests below (e.g. crypto) can be reënabled.
(version "10.15.3")
(source (origin
(method url-fetch)
@@ -91,6 +92,11 @@
(add-before 'configure 'patch-files
(lambda* (#:key inputs #:allow-other-keys)
+ ;; FIXME: These tests fail with openssl@1.1.1d.
+ (for-each delete-file
+ '("test/parallel/test-crypto-binary-default.js"
+ "test/parallel/test-crypto-dh.js"))
+
;; Fix hardcoded /bin/sh references.
(substitute* '("lib/child_process.js"
"lib/internal/v8_prof_polyfill.js"