File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def test_arm_version_check(_run_cmd):
55
55
def test_iar_version_check (_run_cmd ):
56
56
set_targets_json_location ()
57
57
_run_cmd .return_value = ("""
58
- IAR ANSI C/C++ Compiler V7.80.1.28 /LNX for ARM
58
+ IAR ANSI C/C++ Compiler V8.32.1 /LNX for ARM
59
59
""" , "" , 0 )
60
60
notifier = MockNotifier ()
61
61
toolchain = TOOLCHAIN_CLASSES ["IAR" ](TARGET_MAP ["K64F" ], notify = notifier )
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class IAR(mbedToolchain):
33
33
DIAGNOSTIC_PATTERN = re .compile ('"(?P<file>[^"]+)",(?P<line>[\d]+)\s+(?P<severity>Warning|Error|Fatal error)(?P<message>.+)' )
34
34
INDEX_PATTERN = re .compile ('(?P<col>\s*)\^' )
35
35
IAR_VERSION_RE = re .compile (b"IAR ANSI C/C\+\+ Compiler V(\d+\.\d+)" )
36
- IAR_VERSION = LooseVersion ("7.80 " )
36
+ IAR_VERSION = LooseVersion ("8.32 " )
37
37
38
38
@staticmethod
39
39
def check_executable ():
You can’t perform that action at this time.
0 commit comments