]> granicus.if.org Git - postgresql/commitdiff
Fix regression test handling of test_decoding with MSVC
authorMichael Paquier <michael@paquier.xyz>
Mon, 26 Nov 2018 01:49:49 +0000 (10:49 +0900)
committerMichael Paquier <michael@paquier.xyz>
Mon, 26 Nov 2018 01:49:49 +0000 (10:49 +0900)
The set of scripts in charge of running the regression tests for MSVC
run currently under the assumption that only $(top_builddir) can used in
option values defined in REGRESS_OPTS, and those options need to have a
specific format as well to be correctly parsed, so fix the Makefile
values so as those are correctly set.

Per complains from buildfarm member dory and whelk, with some extra
testing done on my side with MSVC to check this patch.

contrib/test_decoding/Makefile

index 8cd83a763feec16d40cd46630a06d3e9c96849cb..06af254f1dd1f0d03eeb8554343b02b7dad1327e 100644 (file)
@@ -11,8 +11,8 @@ REGRESS = ddl xact rewrite toast permissions decoding_in_xact \
 ISOLATION = mxact delayed_startup ondisk_startup concurrent_ddl_dml \
        oldest_xmin snapshot_transfer
 
-REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/test_decoding/logical.conf
-ISOLATION_OPTS = --temp-config $(top_srcdir)/contrib/test_decoding/logical.conf
+REGRESS_OPTS = --temp-config=$(top_builddir)/contrib/test_decoding/logical.conf
+ISOLATION_OPTS = --temp-config=$(top_builddir)/contrib/test_decoding/logical.conf
 
 # Disabled because these tests require "wal_level=logical", which
 # typical installcheck users do not have (e.g. buildfarm clients).