From a965bfd32e20ae297b72bb42a0cf14a5aaf9c3c5 Mon Sep 17 00:00:00 2001 From: Valeriy Koval Date: Fri, 16 Oct 2015 16:17:24 +0300 Subject: [PATCH] Fix boards ldscript test --- tests/commands/test_boards.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/commands/test_boards.py b/tests/commands/test_boards.py index 62a7f102..b44b5e92 100644 --- a/tests/commands/test_boards.py +++ b/tests/commands/test_boards.py @@ -54,4 +54,6 @@ def test_board_ldscripts(platformio_setup, clirunner, validate_cliresult): ldscripts_path = join(util.get_home_dir(), "packages", "ldscripts") for _, opts in util.get_boards().iteritems(): if opts['build'].get("ldscript"): + if "libopencm3" in opts['frameworks']: + continue assert isfile(join(ldscripts_path, opts['build'].get("ldscript")))