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:09 -0400 |
commit | fa5e119dc71ada8d023deadcb36dbfae328f8902 (patch) | |
tree | 6c902ca8fcc0b0b5ef9ff7d665149ead161e44f0 /src | |
parent | 44b3230e821e7a0cc4e9438d1c27305d533edacc (diff) | |
download | postgresql-fa5e119dc71ada8d023deadcb36dbfae328f8902.tar.gz postgresql-fa5e119dc71ada8d023deadcb36dbfae328f8902.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 |