Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit eccfeeb

Browse files
committed
Remove MODULES_big from test_pg_dump
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.
1 parent 68d704e commit eccfeeb

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/bin/pg_dump/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ installdirs:
4545
check:
4646
$(prove_check)
4747

48+
installcheck:
49+
$(prove_installcheck)
50+
4851
uninstall:
4952
rm -f $(addprefix '$(DESTDIR)$(bindir)'/, pg_dump$(X) pg_restore$(X) pg_dumpall$(X))
5053

src/test/modules/test_pg_dump/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# src/test/modules/test_rls_hooks/Makefile
22

3-
MODULE_big = test_pg_dump
43
PGFILEDESC = "test_pg_dump - Test pg_dump with an extension"
54

65
EXTENSION = test_pg_dump
@@ -13,6 +12,9 @@ check: prove-check
1312
prove-check:
1413
$(prove_check)
1514

15+
installcheck:
16+
$(prove_installcheck)
17+
1618
ifdef USE_PGXS
1719
PG_CONFIG = pg_config
1820
PGXS := $(shell $(PG_CONFIG) --pgxs)

0 commit comments

Comments
 (0)