From 9f5ca1b1d645116f37bb24d76085f8c09fc02d90 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 29 Jun 2022 09:41:57 +0200 Subject: [PATCH] test/test_targets: Add --build to generate files. --- test/test_targets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_targets.py b/test/test_targets.py index f1891ef..f048bc0 100644 --- a/test/test_targets.py +++ b/test/test_targets.py @@ -56,6 +56,7 @@ class TestTargets(unittest.TestCase): os.system("rm -rf build") cmd = """\ python3 -m litex_boards.targets.simple litex_boards.platforms.{} \ + --build \ --no-compile \ --uart-name="stub" \ """.format(name) @@ -79,6 +80,7 @@ python3 -m litex_boards.targets.simple litex_boards.platforms.{} \ python3 -m litex_boards.targets.{} \ --cpu-type=vexriscv \ --cpu-variant=minimal \ + --build \ --no-compile \ """.format(name) subprocess.check_call(cmd, shell=True)