From 95c7d4d47cfb814c32fb1e9e7652af161cd34ee3 Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Fri, 26 Jan 2018 11:31:33 -0600 Subject: [PATCH] Compare to unicode in example builder --- tools/test/examples/examples_lib.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/test/examples/examples_lib.py b/tools/test/examples/examples_lib.py index a330c346a5..8fda2d3f55 100644 --- a/tools/test/examples/examples_lib.py +++ b/tools/test/examples/examples_lib.py @@ -18,8 +18,9 @@ sys.path.insert(0, ROOT) from tools.build_api import get_mbed_official_release from tools.targets import TARGET_MAP from tools.export import EXPORTERS +from tools.toolchains import TOOLCHAINS -SUPPORTED_TOOLCHAINS = ["ARM", "IAR", "GCC_ARM", "ARMC6"] +SUPPORTED_TOOLCHAINS = list(TOOLCHAINS - set(u'uARM')) SUPPORTED_IDES = [exp for exp in EXPORTERS.keys() if exp != "cmsis" and exp != "zip"]