From 1d9ea484e29a0dc1900cab6280f79e319d84f035 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Sat, 12 Sep 2015 16:28:09 +0200 Subject: [PATCH] test/Makefile: add example_designs to test regression on example_designs (only generate hdl) --- example_designs/make.py | 1 - test/Makefile | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/example_designs/make.py b/example_designs/make.py index 724ab9e..cd15ecc 100644 --- a/example_designs/make.py +++ b/example_designs/make.py @@ -127,7 +127,6 @@ System Clk: {} MHz if actions["build-bitstream"]: actions["build-csr-csv"] = True actions["build-bitstream"] = True - actions["load-bitstream"] = True if actions["clean"]: subprocess.call(["rm", "-rf", "build/*"]) diff --git a/test/Makefile b/test/Makefile index 1682923..702512a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -31,3 +31,9 @@ icmp_tb: etherbone_tb: $(CMD) etherbone_tb.py + +example_designs: + cd ../example_designs && $(PYTHON) make.py -t base -p kc705 -Ob run False build-bitstream + cd ../example_designs && $(PYTHON) make.py -t udp -p kc705 -Ob run False build-bitstream + cd ../example_designs && $(PYTHON) make.py -t etherbone -p kc705 -Ob run False build-bitstream + cd ../example_designs && $(PYTHON) make.py -t tty -p kc705 -Ob run False build-bitstream