From 1b4c9fb590632ae2a0d4f1b476248158853c6a2c Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 13 Oct 2021 17:01:09 +0200 Subject: [PATCH] test/test_targets: Add efinix_trion_t120 to the excluded platforms/targets. And also give exclusion reasons. --- test/test_targets.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/test/test_targets.py b/test/test_targets.py index f3ba5ab..1f52333 100644 --- a/test/test_targets.py +++ b/test/test_targets.py @@ -14,8 +14,16 @@ from migen import * from litex.soc.integration.builder import * class TestTargets(unittest.TestCase): - excluded_platforms = ["qmtech_daughterboard", "quicklogic_quickfeather"] - excluded_targets = ["simple", "quicklogic_quickfeather"] + excluded_platforms = [ + "qmtech_daughterboard", # Reason: Not a real platform. + "quicklogic_quickfeather", # Reason: No default clock. + "efinix_trion_t120_bga576_dev_kit", # Reason: Require Efinity toolchain. + ] + excluded_targets = [ + "simple", # Reason: Generic target. + "quicklogic_quickfeather", # Reason: No default clock. + "efinix_trion_t120_bga576_dev_kit", # Reason: Require Efinity toolchain. + ] # Build simple design for all platforms. def test_platforms(self):