Source: nodejs
Version: 4.6.1~dfsg-1
Severity: wishlist
Tags: patch

Hi Maintainer

Nodejs has been failing its autopkgtests since 2016-11-02 [1].
This corresponds with the upload of openssl 1.0.2j-1 [2].
The attached patch from Ubuntu seems to fix this.

Additionally, since the upload of nodejs 4.7.2~dfsg-1, parallel/test-process-config now fails [3].
Previously, this test was skipped [4], but has since been reverted.

Regards
Graham


[1] https://ci.debian.net/packages/n/nodejs/unstable/amd64/
[2] https://ci.debian.net/data/packages/unstable/amd64/n/nodejs/20161102_032303.log [3] https://ci.debian.net/data/packages/unstable/amd64/n/nodejs/20170106_160705.autopkgtest.log.gz [4] https://anonscm.debian.org/cgit/collab-maint/nodejs.git/commit/?h=master-4.x&id=f4b30b9cffaf4cae783e7e6cfa2a2330f051d97e

Description: properly handle how SSLv3 was disabled in openssl
Author: Marc Deslauriers <marc.deslauri...@canonical.com>

--- a/test/parallel/test-tls-no-sslv3.js
+++ b/test/parallel/test-tls-no-sslv3.js
@@ -49,6 +49,8 @@
 process.on('exit', function() {
   if (/unknown option -ssl3/.test(stderr)) {
     common.skip('`openssl s_client -ssl3` not supported.');
+  } else if (/null ssl method passed/.test(stderr)) {
+    common.skip('1..0 # Skipped: `openssl s_client -ssl3` is disabled.');
   } else {
     assert.strictEqual(errors.length, 1);
     assert(/:wrong version number/.test(errors[0].message));
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel

Reply via email to