summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2017-10-10 16:51:09 +0000
committerTom Lane2017-10-10 16:51:09 +0000
commitfa5e119dc71ada8d023deadcb36dbfae328f8902 (patch)
tree6c902ca8fcc0b0b5ef9ff7d665149ead161e44f0
parent44b3230e821e7a0cc4e9438d1c27305d533edacc (diff)
Add missing clean step to src/test/modules/brin/Makefile.
I noticed the tmp_check subdirectory wasn't getting cleaned up after a check-world run. Apparently pgxs.mk will only do this for you if you've defined REGRESS. The only other src/test/modules Makefile that does not set that is snapshot_too_old, and it does it like this.
-rw-r--r--src/test/modules/brin/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/modules/brin/Makefile b/src/test/modules/brin/Makefile
index 18c5cafd5e..912dca8009 100644
--- a/src/test/modules/brin/Makefile
+++ b/src/test/modules/brin/Makefile
@@ -1,6 +1,9 @@
# src/test/modules/brin/Makefile
-EXTRA_CLEAN = ./isolation_output
+# Note: because we don't tell the Makefile there are any regression tests,
+# we have to clean those result files explicitly
+EXTRA_CLEAN = $(pg_regress_clean_files) ./isolation_output
+
EXTRA_INSTALL=contrib/pageinspect
ISOLATIONCHECKS=summarization-and-inprogress-insertion