summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2020-03-25 22:05:19 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2020-03-25 22:05:27 -0400
commit958aa438aaa473d580f60154786ffd716a28faf2 (patch)
treeb3f91d4c5e4fdcee0ff6e295933875cded69c30e
parente984fb341f293ab21c7d63897357ffca08280268 (diff)
Further fixes for ssl_passphrase_callback test module.
The Makefile should set TAP_TESTS = 1, not implement the infrastructure for itself. For one thing, it missed the appropriate "make clean" steps. For another, the buildfarm isn't running this test because it wasn't hooked into "make installcheck" either.
-rw-r--r--src/test/modules/ssl_passphrase_callback/Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/test/modules/ssl_passphrase_callback/Makefile b/src/test/modules/ssl_passphrase_callback/Makefile
index 1c4f79807e2..a3b518b50d4 100644
--- a/src/test/modules/ssl_passphrase_callback/Makefile
+++ b/src/test/modules/ssl_passphrase_callback/Makefile
@@ -1,4 +1,4 @@
-# ssl_passphrase Makefile
+# ssl_passphrase_callback Makefile
export with_openssl
@@ -6,6 +6,8 @@ MODULE_big = ssl_passphrase_func
OBJS = ssl_passphrase_func.o $(WIN32RES)
PGFILEDESC = "callback function to provide a passphrase"
+TAP_TESTS = 1
+
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
@@ -18,9 +20,3 @@ include $(top_srcdir)/contrib/contrib-global.mk
endif
SHLIB_LINK += $(filter -lssl -lcrypto -lssleay32 -leay32, $(LIBS))
-
-check: prove-check
-
-prove-check: ssl_passphrase_func$(DLSUFFIX) | temp-install
- @echo running prove ...
- $(prove_check)