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

Commitd55227f

Browse files
committed
Forgot to add file needed for PL regression tests
1 parent54d2002 commitd55227f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

‎src/tools/msvc/getregress.pl

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# Script that collects a list of regression tests from a Makefile
3+
#
4+
# $PostgreSQL: pgsql/src/tools/msvc/getregress.pl,v 1.1 2007/03/22 13:43:02 mha Exp $
5+
#
6+
use strict;
7+
use warnings;
8+
9+
my$M;
10+
11+
open($M,"<Makefile") ||open($M,"<GNUMakefile") ||die"Could not open Makefile";
12+
undef$/;
13+
my$m = <$M>;
14+
close($M);
15+
16+
$m =~s/\\[\r\n]*//gs;
17+
if ($m =~/^REGRESS\s*=\s*(.*)$/gm)
18+
{
19+
my$t =$1;
20+
$t =~s/\s+//g;
21+
print"SET TESTS=$t";
22+
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp