From 201a0e2fb458dc07c24a52d5d457f74e22a70d92 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 15 Mar 2019 20:10:50 +0100 Subject: [PATCH] test/test_examples: add nexys4ddr --- test/test_examples.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_examples.py b/test/test_examples.py index 3f31525..0836bf0 100755 --- a/test/test_examples.py +++ b/test/test_examples.py @@ -16,6 +16,10 @@ class TestExamples(unittest.TestCase): errors = build_config("arty") self.assertEqual(errors, 0) + def test_nexys4ddr(self): + errors = build_config("nexys4ddr") + self.assertEqual(errors, 0) + def test_genesys2(self): errors = build_config("genesys2") self.assertEqual(errors, 0)