Includes library modifications to allow access to AIN_4 (AIN_0 / 5)
Diff: mbd_os/tools/test/toolchains/api.py
- Revision:
- 0:eafc3fd41f75
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbd_os/tools/test/toolchains/api.py Tue Sep 20 21:26:12 2016 +0000 @@ -0,0 +1,13 @@ +import sys +import os + +ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "..")) +sys.path.insert(0, ROOT) + +from tools.toolchains import TOOLCHAIN_CLASSES, LEGACY_TOOLCHAIN_NAMES +from tools.targets import TARGET_MAP + +def test_instantiation(): + for name, Class in TOOLCHAIN_CLASSES.items(): + CLS = Class(TARGET_MAP["K64F"]) + assert name == CLS.name or name == LEGACY_TOOLCHAIN_NAMES[CLS.name]