summaryrefslogtreecommitdiffstats
path: root/tests/regress/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regress/Makefile')
-rw-r--r--tests/regress/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/regress/Makefile b/tests/regress/Makefile
new file mode 100644
index 0000000..c438a16
--- /dev/null
+++ b/tests/regress/Makefile
@@ -0,0 +1,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