Skip to content

Commit 179c45a

Browse files
committed
Attempt to get plpython regression tests working again for MSVC builds.
This has probably been broken for quite a long time. Buildfarm member currawong's current results suggest that it's been broken since 9.1, so backpatch this to that branch. This only supports Python 2 - I will handle Python 3 separately, but this is a fairly simple fix.
1 parent 9ad94ba commit 179c45a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/tools/msvc/vcregress.pl

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,15 @@ sub plcheck
162162
{
163163
next unless -d "$pl/sql" && -d "$pl/expected";
164164
my $lang = $pl eq 'tcl' ? 'pltcl' : $pl;
165-
next unless -d "../../$Config/$lang";
165+
if ($lang eq 'plpython')
166+
{
167+
next unless -d "../../$Config/plpython2";
168+
$lang = 'plpythonu';
169+
}
170+
else
171+
{
172+
next unless -d "../../$Config/$lang";
173+
}
166174
$lang = 'plpythonu' if $lang eq 'plpython';
167175
my @lang_args = ("--load-extension=$lang");
168176
chdir $pl;

0 commit comments

Comments
 (0)