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 @@ -74,7 +74,7 @@ def test_arm_version_check(_run_cmd):
74
74
def test_iar_version_check (_run_cmd ):
75
75
set_targets_json_location ()
76
76
_run_cmd .return_value = ("""
77
- IAR ANSI C/C++ Compiler V7.80.1.28 /LNX for ARM
77
+ IAR ANSI C/C++ Compiler V8.32.1 /LNX for ARM
78
78
""" , "" , 0 )
79
79
notifier = MockNotifier ()
80
80
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