Skip to content

Commit ab43ac7

Browse files
committed
tools: remove armv6 from test tools
CI no longer tests armv6.
1 parent 774814d commit ab43ac7

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Diff for: tools/test.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -896,8 +896,7 @@ def GetTestStatus(self, context, sections, defs):
896896

897897

898898
TIMEOUT_SCALEFACTOR = {
899-
'armv6' : { 'debug' : 12, 'release' : 3 }, # The ARM buildbots are slow.
900-
'arm' : { 'debug' : 8, 'release' : 2 },
899+
'arm' : { 'debug' : 8, 'release' : 2 }, # The ARM buildbots are slow.
901900
'ia32' : { 'debug' : 4, 'release' : 1 },
902901
'ppc' : { 'debug' : 4, 'release' : 1 },
903902
's390' : { 'debug' : 4, 'release' : 1 } }

Diff for: tools/utils.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,7 @@ def GuessOS():
8383
def GuessArchitecture():
8484
id = platform.machine()
8585
id = id.lower() # Windows 7 capitalizes 'AMD64'.
86-
if id.startswith('armv6'): # Can return 'armv6l'.
87-
return 'armv6'
88-
elif id.startswith('arm') or id == 'aarch64':
86+
if id.startswith('arm') or id == 'aarch64':
8987
return 'arm'
9088
elif (not id) or (not re.match('(x|i[3-6])86$', id) is None):
9189
return 'ia32'

0 commit comments

Comments
 (0)