From d6696f666bd1fde063ebd94c769f3dff2b777134 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 21 Apr 2022 12:31:31 +0200 Subject: [PATCH] test/test_targets: Use new --no-compile instead of --no-compile-software/--no-compile-gateware. --- test/test_targets.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test/test_targets.py b/test/test_targets.py index 1a9ed13..f1891ef 100644 --- a/test/test_targets.py +++ b/test/test_targets.py @@ -56,9 +56,8 @@ class TestTargets(unittest.TestCase): os.system("rm -rf build") cmd = """\ python3 -m litex_boards.targets.simple litex_boards.platforms.{} \ - --no-compile-software \ - --no-compile-gateware \ - --uart-name="stub" \ + --no-compile \ + --uart-name="stub" \ """.format(name) subprocess.check_call(cmd, shell=True) @@ -80,7 +79,6 @@ python3 -m litex_boards.targets.simple litex_boards.platforms.{} \ python3 -m litex_boards.targets.{} \ --cpu-type=vexriscv \ --cpu-variant=minimal \ - --no-compile-software \ - --no-compile-gateware \ + --no-compile \ """.format(name) subprocess.check_call(cmd, shell=True)