Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9b9f0d7

Browse files
committed
Expand properly list of TAP tests used for prove in vcregress.pl
Depending on the system used, t/*.pl may not be expanded into a list oftests which can be consumed by prove when attempting to run TAP tests ona given path. Fix that by using glob() directly in the script, to makesure that a complete list of tests is provided. This has not proved tobe an issue with MSVC as the list was properly expanded, but it is onLinux with perl's system().This is extracted from a larger patch.Author: Tom LaneDiscussion:https://postgr.es/m/6628.1567958876@sss.pgh.pa.usBackpatch-through: 9.4
1 parent2e6f972 commit9b9f0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/tools/msvc/vcregress.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ sub tap_check
201201
my$dir =shift;
202202
chdir$dir;
203203

204-
my@args = ("prove",@flags,"t/*.pl");
204+
my@args = ("prove",@flags,glob("t/*.pl"));
205205

206206
# adjust the environment for just this test
207207
local%ENV =%ENV;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp