summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorMichael Paquier2025-12-28 00:17:42 +0000
committerMichael Paquier2025-12-28 00:17:42 +0000
commit9adf32da6b48e423e632ac24d6c634021e1ab154 (patch)
tree42e4e8d92f318488958546b623fe03a75ea0aa40 /src/test
parenta9123db14a12e2e2dfb93dbbef4f2cdc2986023b (diff)
Split some long Makefile lists
This change makes more readable code diffs when adding new items or removing old items, while ensuring that lines do not get excessively long. Some SUBDIRS, PROGRAMS and REGRESS lists are split. Note that there are a few more REGRESS lists that could be split, particularly in contrib/. Author: Jelte Fennema-Nio <postgres@jeltef.nl> Co-Authored-By: Jacob Champion <jacob.champion@enterprisedb.com> Reviewed-by: Chao Li <li.evan.chao@gmail.com> Reviewed-by: Japin Li <japinli@hotmail.com> Reviewed-by: Man Zeng <zengman@halodbtech.com> Discussion: https://postgr.es/m/DF6HDGB559U5.3MPRFCWPONEAE@jeltef.nl
Diffstat (limited to 'src/test')
-rw-r--r--src/test/Makefile10
-rw-r--r--src/test/examples/Makefile8
2 files changed, 16 insertions, 2 deletions
diff --git a/src/test/Makefile b/src/test/Makefile
index 511a72e6238..3eb0a06abb4 100644
--- a/src/test/Makefile
+++ b/src/test/Makefile
@@ -12,7 +12,15 @@ subdir = src/test
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
-SUBDIRS = perl postmaster regress isolation modules authentication recovery subscription
+SUBDIRS = \
+ authentication \
+ isolation \
+ modules \
+ perl \
+ postmaster \
+ recovery \
+ regress \
+ subscription
ifeq ($(with_icu),yes)
SUBDIRS += icu
diff --git a/src/test/examples/Makefile b/src/test/examples/Makefile
index e72d058e0c4..3a4e36465ba 100644
--- a/src/test/examples/Makefile
+++ b/src/test/examples/Makefile
@@ -14,7 +14,13 @@ override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
LDFLAGS_INTERNAL += $(libpq_pgport)
-PROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo testlo64
+PROGS = \
+ testlibpq \
+ testlibpq2 \
+ testlibpq3 \
+ testlibpq4 \
+ testlo \
+ testlo64
all: $(PROGS)