From: Tom Lane Date: Sun, 30 Jun 2019 18:05:24 +0000 (-0400) Subject: Exclude new src/test/modules/unsafe_tests directory from MSVC build. X-Git-Tag: REL_12_BETA3~115 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c000a47ad1fdd4fb92c7068279d97e0c3db4f8eb;p=thirdparty%2Fpostgresql.git Exclude new src/test/modules/unsafe_tests directory from MSVC build. There's nothing to build here, and that was confusing AddContrib(). Per buildfarm. --- diff --git a/src/tools/msvc/Mkvcbuild.pm b/src/tools/msvc/Mkvcbuild.pm index e07e4593cda..973691c3de0 100644 --- a/src/tools/msvc/Mkvcbuild.pm +++ b/src/tools/msvc/Mkvcbuild.pm @@ -48,7 +48,7 @@ my @contrib_excludes = ( 'ltree_plpython', 'pgcrypto', 'sepgsql', 'brin', 'test_extensions', 'test_pg_dump', - 'snapshot_too_old'); + 'snapshot_too_old', 'unsafe_tests'); # Set of variables for frontend modules my $frontend_defines = { 'initdb' => 'FRONTEND' };