Skip to content

Commit f33fc3a

Browse files
deepikabhavnani0xc0170
authored andcommitted
Set IAR version as 8.32 in tools
1 parent f4e0031 commit f33fc3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/test/toolchains/api_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_arm_version_check(_run_cmd):
7474
def test_iar_version_check(_run_cmd):
7575
set_targets_json_location()
7676
_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
7878
""", "", 0)
7979
notifier = MockNotifier()
8080
toolchain = TOOLCHAIN_CLASSES["IAR"](TARGET_MAP["K64F"], notify=notifier)

tools/toolchains/iar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class IAR(mbedToolchain):
3333
DIAGNOSTIC_PATTERN = re.compile('"(?P<file>[^"]+)",(?P<line>[\d]+)\s+(?P<severity>Warning|Error|Fatal error)(?P<message>.+)')
3434
INDEX_PATTERN = re.compile('(?P<col>\s*)\^')
3535
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")
3737

3838
@staticmethod
3939
def check_executable():

0 commit comments

Comments
 (0)