diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-01-29 19:13:34 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-01-29 19:13:34 -0500 |
commit | 26a81bb8152bd9f29bc24c1edfc00e2cbcd68548 (patch) | |
tree | 391427570a0cb448dadecffe25d16f155c47180e | |
parent | 50fc694e43742ce3d04a5e9f708432cb022c5f0d (diff) | |
download | postgresql-26a81bb8152bd9f29bc24c1edfc00e2cbcd68548.tar.gz postgresql-26a81bb8152bd9f29bc24c1edfc00e2cbcd68548.zip |
Fix vcregress.pl for new plperl test case.
As of commit 50fc694e4, the plperl tests don't want preinstalled
plperl languages; they now install those themselves. I'd removed the
--load-extension options from the GNUmakefile, but missed teaching
the MSVC build script about that.
Per buildfarm.
-rw-r--r-- | src/tools/msvc/vcregress.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 7915ee79256..82dca29a616 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -353,8 +353,8 @@ sub plcheck if ($lang eq 'plperl') { - # run both trusted and untrusted perl tests - push(@lang_args, "--load-extension=plperlu"); + # plperl tests will install the extensions themselves + @lang_args = (); # assume we're using this perl to built postgres # test if we can run two interpreters in one backend, and if so |