Skip to content

Commit f30c6f5

Browse files
committed
Clean up after TAP tests in oid2name and vacuumlo.
Oversights in commits 1aaf532 and bfea331. Unlike the case for traditional-style REGRESS tests, pgxs.mk doesn't have any builtin support for TAP tests, so it doesn't realize it should remove tmp_check/. Maybe we should build some actual pgxs infrastructure for TAP tests ... but for the moment, just remove explicitly.
1 parent 14e9b2a commit f30c6f5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

contrib/oid2name/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ OBJS = oid2name.o $(WIN32RES)
99
PG_CPPFLAGS = -I$(libpq_srcdir)
1010
PG_LIBS_INTERNAL = $(libpq_pgport)
1111

12+
EXTRA_CLEAN = tmp_check
13+
1214
ifdef USE_PGXS
1315
PG_CONFIG = pg_config
1416
PGXS := $(shell $(PG_CONFIG) --pgxs)

contrib/vacuumlo/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ OBJS = vacuumlo.o $(WIN32RES)
99
PG_CPPFLAGS = -I$(libpq_srcdir)
1010
PG_LIBS_INTERNAL = $(libpq_pgport)
1111

12+
EXTRA_CLEAN = tmp_check
13+
1214
ifdef USE_PGXS
1315
PG_CONFIG = pg_config
1416
PGXS := $(shell $(PG_CONFIG) --pgxs)

0 commit comments

Comments
 (0)