diff options
author | graham.gower@gmail.com <graham.gower@gmail.com@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2010-12-22 20:37:58 (EST) |
---|---|---|
committer | graham.gower@gmail.com <graham.gower@gmail.com@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2010-12-22 20:37:58 (EST) |
commit | bab2931ba2828426ae497b23d20590a208ed6f48 (patch) | |
tree | 288e9c7da5a97a23f7b0e5d7de94b287d366e98a /tests/regress/Makefile | |
parent | 6cdd37a2c49383c4eff4ddc882e8c4aba0069351 (diff) |
Add regress test for issue72.
git-svn-id: http://opkg.googlecode.com/svn/trunk@593 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'tests/regress/Makefile')
-rw-r--r-- | tests/regress/Makefile | 13 |
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 |