mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #6939 from jeromecoutant/PR_NOT_SUPPORTED
NOT_SUPPORTED error was not supported any more in test_api.py scriptpull/6869/merge
commit
1ae48fcee9
|
@ -528,7 +528,7 @@ class SingleTestRunner(object):
|
||||||
project_name_str))
|
project_name_str))
|
||||||
test_result = self.TEST_RESULT_BUILD_FAILED
|
test_result = self.TEST_RESULT_BUILD_FAILED
|
||||||
elif isinstance(e, NotSupportedException):
|
elif isinstance(e, NotSupportedException):
|
||||||
print(elf.logger.log_line(
|
print(self.logger.log_line(
|
||||||
self.logger.LogType.INFO,
|
self.logger.LogType.INFO,
|
||||||
'Project %s is not supported' % project_name_str))
|
'Project %s is not supported' % project_name_str))
|
||||||
test_result = self.TEST_RESULT_NOT_SUPPORTED
|
test_result = self.TEST_RESULT_NOT_SUPPORTED
|
||||||
|
|
Loading…
Reference in New Issue