diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-26 14:08:20 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-26 14:08:20 +0200 |
commit | b90f443338460f1f906fc8e342130ab428e343ad (patch) | |
tree | f3ef41893f7502ac8c803767a3961535f4ca2789 /Makefile | |
parent | 3719281ed44aa9d8b2ac11eb936b750c4642be38 (diff) | |
download | yosys-b90f443338460f1f906fc8e342130ab428e343ad.tar.gz yosys-b90f443338460f1f906fc8e342130ab428e343ad.tar.bz2 yosys-b90f443338460f1f906fc8e342130ab428e343ad.zip |
Added "passed" message to make test targets
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |