diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-06-03 13:15:20 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-06-03 13:15:20 +0900 |
commit | 2cc96f23391437e976aa830c5a955a2804d66452 (patch) | |
tree | 5303884713bbfce4a46c2c89ca0be0d125fe9337 /GNUmakefile.in | |
parent | 642e9165fd511315f0c5c3ad940f6ded42752dbe (diff) | |
download | postgresql-2cc96f23391437e976aa830c5a955a2804d66452.tar.gz postgresql-2cc96f23391437e976aa830c5a955a2804d66452.zip |
Run tests of libpq on installcheck-world, checkprep and check-world
The regression tests of libpq have been converted to a TAP test as of
ac25173, but they were not run when running the global make targets
mentioned in $subject as the code only considered src/interfaces/ecpg/
as a path to run. This switches to src/interfaces/, to always include
the tests of libpq in each run.
Reported-by: Justin Pryzby
Reviewed-by: Andres Freund
Discussion: https://postgr.es/m/20220529151850.GN19626@telsasoft.com
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r-- | GNUmakefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in index 2352fc1171a..38713b5d123 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -68,10 +68,10 @@ check check-tests installcheck installcheck-parallel installcheck-tests: CHECKPR check check-tests installcheck installcheck-parallel installcheck-tests: submake-generated-headers $(MAKE) -C src/test/regress $@ -$(call recurse,check-world,src/test src/pl src/interfaces/ecpg contrib src/bin,check) -$(call recurse,checkprep, src/test src/pl src/interfaces/ecpg contrib src/bin) +$(call recurse,check-world,src/test src/pl src/interfaces contrib src/bin,check) +$(call recurse,checkprep, src/test src/pl src/interfaces contrib src/bin) -$(call recurse,installcheck-world,src/test src/pl src/interfaces/ecpg contrib src/bin,installcheck) +$(call recurse,installcheck-world,src/test src/pl src/interfaces contrib src/bin,installcheck) $(call recurse,install-tests,src/test/regress,install-tests) GNUmakefile: GNUmakefile.in $(top_builddir)/config.status |