diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-10-10 12:51:09 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-10-10 12:51:20 -0400 |
commit | f3b45b6738aa4c6b77508e319de9254a2a7b2de7 (patch) | |
tree | 35be110c4d2c2c20a9cf9b6c333d8cb99e87f3b3 /src | |
parent | c3723317d08ce6df6c81234f7daebe7fd86a6ecb (diff) | |
download | postgresql-f3b45b6738aa4c6b77508e319de9254a2a7b2de7.tar.gz postgresql-f3b45b6738aa4c6b77508e319de9254a2a7b2de7.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/modules/brin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/modules/brin/Makefile b/src/test/modules/brin/Makefile index 18c5cafd5e7..912dca80097 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 |