[Pkg-javascript-devel] Bug#855018: nodejs: autopkgtests always fail since 2016-11-02

2017-02-14 Thread Jérémy Lal
2017-02-14 6:38 GMT+01:00 Graham Inggs :
> Control: reopen -1
>
> Autopkgtests for nodejs 4.7.2~dfsg-2 still fail[1] with:
>
> not ok 663 parallel/test-process-config
>   ---
>   duration_ms: 0.89
>   severity: fail
>   stack: |-
> fs.js:549
>   return binding.open(pathModule._makeLong(path),
> stringToFlags(flags), mode);
>  ^
>
> Error: ENOENT: no such file or directory, open
> '/tmp/autopkgtest-virt-lxc.shared.3iwa8aj7/downtmp/build.0VB/nodejs-4.7.2~dfsg/config.gypi'

That's a different issue.

Jérémy.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#855018: nodejs: autopkgtests always fail since 2016-11-02

2017-02-13 Thread Graham Inggs

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=f4b30b9cffaf4cae783e7e6cfa2a2330f051d97e


Description: properly handle how SSLv3 was disabled in openssl
Author: Marc Deslauriers 

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