Commit 3955cae0 authored by Michael Paquier's avatar Michael Paquier

Fix regression test handling of test_decoding with MSVC

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.
parent b0b1f418
...@@ -11,8 +11,8 @@ REGRESS = ddl xact rewrite toast permissions decoding_in_xact \ ...@@ -11,8 +11,8 @@ REGRESS = ddl xact rewrite toast permissions decoding_in_xact \
ISOLATION = mxact delayed_startup ondisk_startup concurrent_ddl_dml \ ISOLATION = mxact delayed_startup ondisk_startup concurrent_ddl_dml \
oldest_xmin snapshot_transfer oldest_xmin snapshot_transfer
REGRESS_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_srcdir)/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 # Disabled because these tests require "wal_level=logical", which
# typical installcheck users do not have (e.g. buildfarm clients). # typical installcheck users do not have (e.g. buildfarm clients).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment