From: Clifford Wolf Date: Sat, 26 Jul 2014 12:08:20 +0000 (+0200) Subject: Added "passed" message to make test targets X-Git-Tag: yosys-0.4~421 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b90f443338460f1f906fc8e342130ab428e343ad;p=yosys.git Added "passed" message to make test targets --- diff --git a/Makefile b/Makefile index da4d7fac9..b87a7474e 100644 --- a/Makefile +++ b/Makefile @@ -226,14 +226,23 @@ test: $(TARGETS) $(EXTRA_TARGETS) cd tests/techmap && bash run-test.sh cd tests/memories && bash run-test.sh cd tests/sat && bash run-test.sh + @echo "" + @echo " Passed \"make test\"." + @echo "" VALGRIND ?= valgrind --error-exitcode=1 --leak-check=full --show-reachable=yes --errors-for-leak-kinds=all vgtest: $(TARGETS) $(EXTRA_TARGETS) $(VALGRIND) ./yosys -p 'setattr -mod -unset top; hierarchy; proc; opt; memory -nomap; opt -fine; techmap; opt' $$( ls tests/simple/*.v | grep -v repwhile.v ) + @echo "" + @echo " Passed \"make vgtest\"." + @echo "" vloghtb: $(TARGETS) $(EXTRA_TARGETS) cd tests/vloghtb && bash run-test.sh + @echo "" + @echo " Passed \"make vloghtb\"." + @echo "" install: $(TARGETS) $(EXTRA_TARGETS) $(INSTALL_SUDO) mkdir -p $(DESTDIR)/bin