Skip to content

Commit d55227f

Browse files
committed
Forgot to add file needed for PL regression tests
1 parent 54d2002 commit d55227f

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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy