aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorazidar2015-08-26 15:02:26 -0700
committerazidar2015-08-26 15:07:53 -0700
commita9b33b97892abaea65f5ffda50f2b170122ce335 (patch)
treebb7e079d69766943a9343ea9ca7c60d8d5a14e88 /Makefile
parent3d0ed2091a4b0028593a4d9dcb293303d03546e1 (diff)
Added regression test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index eb13a9dd..3085bfaa 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
root_dir ?= $(PWD)
test_dir ?= $(root_dir)/test
+regress_dir ?= $(root_dir)/regress
firrtl_dir ?= $(root_dir)/src/main/stanza
all-noise:
@@ -30,6 +31,9 @@ build-fast:
check:
cd $(test_dir) && lit -v . --path=$(root_dir)/utils/bin/
+regress:
+ cd $(regress_dir) && firrtl -i rocket.fir -o rocket.v -X verilog
+
passes:
cd $(test_dir)/passes && lit -v . --path=$(root_dir)/utils/bin/
@@ -62,4 +66,4 @@ done: build check
fail:
say "fail"
-.PHONY: all install build-deploy build check clean fail succeed
+.PHONY: all install build-deploy build check clean fail succeed regress