Remove MODULES_big from test_pg_dump
authorStephen Frost <sfrost@snowman.net>
Fri, 6 May 2016 19:26:57 +0000 (15:26 -0400)
committerStephen Frost <sfrost@snowman.net>
Fri, 6 May 2016 19:26:57 +0000 (15:26 -0400)
The Makefile for test_pg_dump shouldn't have a MODULES_big line
because there's no actual compiled bit for that extension.  Hopefully
this will fix the Windows buildfarm members which were complaining.

In passing, also add the 'prove_installcheck' bit to the pg_dump and
test_pg_dump Makefiles, to get the buildfarm members to actually run
those tests.

src/bin/pg_dump/Makefile
src/test/modules/test_pg_dump/Makefile

index 260804b5a7e555acc90844e5e58771ae3b4525cc..9a96361aa35a60735ea340af0ca75da0fd1526b6 100644 (file)
@@ -45,6 +45,9 @@ installdirs:
 check:
    $(prove_check)
 
+installcheck:
+   $(prove_installcheck)
+
 uninstall:
    rm -f $(addprefix '$(DESTDIR)$(bindir)'/, pg_dump$(X) pg_restore$(X) pg_dumpall$(X))
 
index 0eb3b5f988e56e4418fb6d6d4b5872d52f924709..e6adbb82b42eb4b765375fbbf70d61ff36bdf28c 100644 (file)
@@ -1,6 +1,5 @@
 # src/test/modules/test_rls_hooks/Makefile
 
-MODULE_big = test_pg_dump
 PGFILEDESC = "test_pg_dump - Test pg_dump with an extension"
 
 EXTENSION = test_pg_dump
@@ -13,6 +12,9 @@ check: prove-check
 prove-check:
    $(prove_check)
 
+installcheck:
+   $(prove_installcheck)
+
 ifdef USE_PGXS
 PG_CONFIG = pg_config
 PGXS := $(shell $(PG_CONFIG) --pgxs)