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.
master
Tobias Geerinckx-Rice 2019-09-16 14:34:17 +02:00
parent 30c6088e5a
commit aae65db560
No known key found for this signature in database
GPG Key ID: D889B0F018C5493C
1 changed files with 6 additions and 0 deletions

View File

@ -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"