We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b47530 commit b7ff467Copy full SHA for b7ff467
tests/extension/thread_/uart/Makefile
@@ -0,0 +1,29 @@
1
+TARGET=$(shell ls *.py | grep -v test | grep -v parsetab.py)
2
+ARGS=
3
+
4
+PYTHON=python3
5
+#PYTHON=python
6
+#OPT=-m pdb
7
+#OPT=-m cProfile -s time
8
+#OPT=-m cProfile -o profile.rslt
9
10
+.PHONY: all
11
+all: test
12
13
+.PHONY: run
14
+run:
15
+ $(PYTHON) $(OPT) $(TARGET) $(ARGS)
16
17
+.PHONY: test
18
+test:
19
+ $(PYTHON) -m pytest -vv
20
21
+.PHONY: check
22
+check:
23
+ $(PYTHON) $(OPT) $(TARGET) $(ARGS) > tmp.v
24
+ iverilog -tnull -Wall tmp.v
25
+ rm -f tmp.v
26
27
+.PHONY: clean
28
+clean:
29
+ rm -rf *.pyc __pycache__ parsetab.py .cache *.out *.png *.dot tmp.v uut.vcd
0 commit comments