summaryrefslogtreecommitdiffstats
path: root/tests/regress/Makefile
blob: c438a160c0d59fbef15a820ce4a1834569b25d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
PYTHON=/usr/bin/python3
REGRESSION_TESTS=issue26.py issue31.py issue45.py issue46.py \
			issue50.py issue51.py issue55.py issue58.py \
			issue72.py

regress:
	@for test in $(REGRESSION_TESTS); do \
		echo $$test; \
		$(PYTHON) $$test; \
	done

clean:
	rm -f *.pyc