diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-16 14:34:17 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-20 17:24:02 +0200 |
commit | aae65db560bd146ba47774cca46056d72be2a5d4 (patch) | |
tree | ee0d3abc66d26b676a2391a728f932b3874b46c1 /gnu/packages | |
parent | 30c6088e5ae87b283589fab250ad91fb8a09ff52 (diff) | |
download | patches-aae65db560bd146ba47774cca46056d72be2a5d4.tar patches-aae65db560bd146ba47774cca46056d72be2a5d4.tar.gz |
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.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/node.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index fc43fcb04c..bf585a9686 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" |