File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ if (!common.hasCrypto) {
66 common . skip ( 'missing crypto' ) ;
77 return ;
88}
9+
10+ if ( ! common . opensslCli ) {
11+ common . skip ( 'missing openssl-cli' ) ;
12+ return ;
13+ }
14+
915const tls = require ( 'tls' ) ;
1016
1117const spawn = require ( 'child_process' ) . spawn ;
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ if (!common.hasCrypto) {
66 common . skip ( 'missing crypto' ) ;
77 return ;
88}
9+
10+ if ( ! common . opensslCli ) {
11+ common . skip ( 'missing openssl-cli' ) ;
12+ return ;
13+ }
14+
915const tls = require ( 'tls' ) ;
1016
1117const exec = require ( 'child_process' ) . exec ;
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ if (!common.hasCrypto) {
55 common . skip ( 'missing crypto' ) ;
66 return ;
77}
8+
9+ if ( ! common . opensslCli ) {
10+ common . skip ( 'missing openssl-cli' ) ;
11+ return ;
12+ }
13+
814const assert = require ( 'assert' ) ;
915const tls = require ( 'tls' ) ;
1016
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ if (!common.hasCrypto) {
66 common . skip ( 'missing crypto' ) ;
77 return ;
88}
9+
10+ if ( ! common . opensslCli ) {
11+ common . skip ( 'missing openssl-cli' ) ;
12+ return ;
13+ }
14+
915const tls = require ( 'tls' ) ;
1016
1117const join = require ( 'path' ) . join ;
You can’t perform that action at this time.
0 commit comments