File tree 4 files changed +24
-0
lines changed
4 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ if (!common.hasCrypto) {
6
6
common . skip ( 'missing crypto' ) ;
7
7
return ;
8
8
}
9
+
10
+ if ( ! common . opensslCli ) {
11
+ common . skip ( 'missing openssl-cli' ) ;
12
+ return ;
13
+ }
14
+
9
15
const tls = require ( 'tls' ) ;
10
16
11
17
const spawn = require ( 'child_process' ) . spawn ;
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ if (!common.hasCrypto) {
6
6
common . skip ( 'missing crypto' ) ;
7
7
return ;
8
8
}
9
+
10
+ if ( ! common . opensslCli ) {
11
+ common . skip ( 'missing openssl-cli' ) ;
12
+ return ;
13
+ }
14
+
9
15
const tls = require ( 'tls' ) ;
10
16
11
17
const exec = require ( 'child_process' ) . exec ;
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ if (!common.hasCrypto) {
5
5
common . skip ( 'missing crypto' ) ;
6
6
return ;
7
7
}
8
+
9
+ if ( ! common . opensslCli ) {
10
+ common . skip ( 'missing openssl-cli' ) ;
11
+ return ;
12
+ }
13
+
8
14
const assert = require ( 'assert' ) ;
9
15
const tls = require ( 'tls' ) ;
10
16
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ if (!common.hasCrypto) {
6
6
common . skip ( 'missing crypto' ) ;
7
7
return ;
8
8
}
9
+
10
+ if ( ! common . opensslCli ) {
11
+ common . skip ( 'missing openssl-cli' ) ;
12
+ return ;
13
+ }
14
+
9
15
const tls = require ( 'tls' ) ;
10
16
11
17
const join = require ( 'path' ) . join ;
You can’t perform that action at this time.
0 commit comments