mirror of https://github.com/ARMmbed/mbed-os.git
Remove stray prints and whitespace
parent
c7c39a755d
commit
eb27d8ed17
|
@ -84,14 +84,13 @@ def test_armc5_version_check(_run_cmd):
|
||||||
def test_armc6_version_check(_run_cmd):
|
def test_armc6_version_check(_run_cmd):
|
||||||
set_targets_json_location()
|
set_targets_json_location()
|
||||||
notifier = MockNotifier()
|
notifier = MockNotifier()
|
||||||
print(TARGET_MAP["K64F"])
|
|
||||||
toolchain = TOOLCHAIN_CLASSES["ARMC6"](TARGET_MAP["K64F"], notify=notifier)
|
toolchain = TOOLCHAIN_CLASSES["ARMC6"](TARGET_MAP["K64F"], notify=notifier)
|
||||||
print(toolchain)
|
|
||||||
_run_cmd.return_value = ("""
|
_run_cmd.return_value = ("""
|
||||||
Product: ARM Compiler 6.11 Professional
|
Product: ARM Compiler 6.11 Professional
|
||||||
Component: ARM Compiler 6.11
|
Component: ARM Compiler 6.11
|
||||||
Tool: armclang [5d3b4200]
|
Tool: armclang [5d3b4200]
|
||||||
""", "", 0)
|
""", "", 0)
|
||||||
|
|
||||||
toolchain.version_check()
|
toolchain.version_check()
|
||||||
assert notifier.messages == []
|
assert notifier.messages == []
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue