File tree Expand file tree Collapse file tree 6 files changed +41
-5
lines changed Expand file tree Collapse file tree 6 files changed +41
-5
lines changed Original file line number Diff line number Diff line change 2121
2222'use strict' ;
2323const common = require ( '../common' ) ;
24- if ( ! common . hasCrypto )
24+
25+ if ( ! common . hasCrypto ) {
2526 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+ }
2633
2734const assert = require ( 'assert' ) ;
2835const crypto = require ( 'crypto' ) ;
Original file line number Diff line number Diff line change 2121
2222'use strict' ;
2323const common = require ( '../common' ) ;
24- if ( ! common . hasCrypto )
24+
25+ if ( ! common . hasCrypto ) {
2526 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+ }
2633
2734const assert = require ( 'assert' ) ;
2835const crypto = require ( 'crypto' ) ;
Original file line number Diff line number Diff line change 2121
2222'use strict' ;
2323const common = require ( '../common' ) ;
24+
2425if ( ! common . hasCrypto ) {
2526 common . skip ( 'node compiled without OpenSSL.' ) ;
2627}
Original file line number Diff line number Diff line change 2121
2222'use strict' ;
2323const common = require ( '../common' ) ;
24- if ( ! common . hasCrypto )
24+
25+ if ( ! common . hasCrypto ) {
2526 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+ }
2633
2734const assert = require ( 'assert' ) ;
2835const crypto = require ( 'crypto' ) ;
Original file line number Diff line number Diff line change 2020// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121
2222'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+ }
2429
2530let complete = 0 ;
2631
Original file line number Diff line number Diff line change 11'use strict' ;
22
33const 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+
514common . requireNoPackageJSONAbove ( ) ;
615
716const { debuglog } = require ( 'util' ) ;
You can’t perform that action at this time.
0 commit comments