From fc8a9968bdc1bbb15e5d88ba849472406fcdbc90 Mon Sep 17 00:00:00 2001 From: Erwin Janssen Date: Fri, 7 Oct 2016 15:16:24 +0200 Subject: [PATCH] Add shapes.py to Autotools check step Running `make check` (or `test` or `rtest`) now also executes `python shapes.py` --- configure.ac | 2 ++ tests/Makefile.am | 2 +- tests/regression_tests/Makefile.am | 1 + tests/regression_tests/shapes/Makefile.am | 2 ++ 4 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 tests/regression_tests/Makefile.am create mode 100644 tests/regression_tests/shapes/Makefile.am diff --git a/configure.ac b/configure.ac index e8a799c4b..3584ed570 100644 --- a/configure.ac +++ b/configure.ac @@ -3225,6 +3225,8 @@ AC_CONFIG_FILES(Makefile tests/unit_tests/Makefile tests/unit_tests/lib/Makefile tests/unit_tests/lib/common/Makefile + tests/regression_tests/Makefile + tests/regression_tests/shapes/Makefile share/Makefile share/examples/Makefile share/gui/Makefile diff --git a/tests/Makefile.am b/tests/Makefile.am index 8e4e403da..7514ccde3 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,4 +1,4 @@ # $Id$ $Revision$ ## Process this file with automake to produce Makefile.in -SUBDIRS = unit_tests +SUBDIRS = unit_tests regression_tests diff --git a/tests/regression_tests/Makefile.am b/tests/regression_tests/Makefile.am new file mode 100644 index 000000000..c375449ad --- /dev/null +++ b/tests/regression_tests/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = shapes diff --git a/tests/regression_tests/shapes/Makefile.am b/tests/regression_tests/shapes/Makefile.am new file mode 100644 index 000000000..8182cf856 --- /dev/null +++ b/tests/regression_tests/shapes/Makefile.am @@ -0,0 +1,2 @@ +check test rtest: + python shapes.py -- 2.50.0