File tree 6 files changed +41
-5
lines changed
6 files changed +41
-5
lines changed Original file line number Diff line number Diff line change 21
21
22
22
'use strict' ;
23
23
const common = require ( '../common' ) ;
24
- if ( ! common . hasCrypto )
24
+
25
+ if ( ! common . hasCrypto ) {
25
26
common . skip ( 'node compiled without OpenSSL.' ) ;
27
+ }
28
+
29
+ if ( ( process . config . variables . arm_version === '6' ) ||
30
+ ( process . config . variables . arm_version === '7' ) ) {
31
+ common . skip ( 'Too slow for armv6 and armv7 bots' ) ;
32
+ }
26
33
27
34
const assert = require ( 'assert' ) ;
28
35
const crypto = require ( 'crypto' ) ;
Original file line number Diff line number Diff line change 21
21
22
22
'use strict' ;
23
23
const common = require ( '../common' ) ;
24
- if ( ! common . hasCrypto )
24
+
25
+ if ( ! common . hasCrypto ) {
25
26
common . skip ( 'node compiled without OpenSSL.' ) ;
27
+ }
28
+
29
+ if ( ( process . config . variables . arm_version === '6' ) ||
30
+ ( process . config . variables . arm_version === '7' ) ) {
31
+ common . skip ( 'Too slow for armv6 and armv7 bots' ) ;
32
+ }
26
33
27
34
const assert = require ( 'assert' ) ;
28
35
const crypto = require ( 'crypto' ) ;
Original file line number Diff line number Diff line change 21
21
22
22
'use strict' ;
23
23
const common = require ( '../common' ) ;
24
+
24
25
if ( ! common . hasCrypto ) {
25
26
common . skip ( 'node compiled without OpenSSL.' ) ;
26
27
}
Original file line number Diff line number Diff line change 21
21
22
22
'use strict' ;
23
23
const common = require ( '../common' ) ;
24
- if ( ! common . hasCrypto )
24
+
25
+ if ( ! common . hasCrypto ) {
25
26
common . skip ( 'missing crypto' ) ;
27
+ }
28
+
29
+ if ( ( process . config . variables . arm_version === '6' ) ||
30
+ ( process . config . variables . arm_version === '7' ) ) {
31
+ common . skip ( 'Too slow for armv6 and armv7 bots' ) ;
32
+ }
26
33
27
34
const assert = require ( 'assert' ) ;
28
35
const crypto = require ( 'crypto' ) ;
Original file line number Diff line number Diff line change 20
20
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21
21
22
22
'use strict' ;
23
- require ( '../common' ) ;
23
+ const common = require ( '../common' ) ;
24
+
25
+ if ( ( process . config . variables . arm_version === '6' ) ||
26
+ ( process . config . variables . arm_version === '7' ) ) {
27
+ common . skip ( 'Too slow for armv6 and armv7 bots' ) ;
28
+ }
24
29
25
30
let complete = 0 ;
26
31
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
const common = require ( '../common' ) ;
4
- if ( ! common . hasCrypto ) common . skip ( 'missing crypto' ) ;
4
+
5
+ if ( ! common . hasCrypto ) {
6
+ common . skip ( 'missing crypto' ) ;
7
+ }
8
+
9
+ if ( ( process . config . variables . arm_version === '6' ) ||
10
+ ( process . config . variables . arm_version === '7' ) ) {
11
+ common . skip ( 'Too slow for armv6 and armv7 bots' ) ;
12
+ }
13
+
5
14
common . requireNoPackageJSONAbove ( ) ;
6
15
7
16
const { debuglog } = require ( 'util' ) ;
You can’t perform that action at this time.
0 commit comments