diff --git a/src/tools/msvc/getregress.pl b/src/tools/msvc/getregress.pl new file mode 100644 index 0000000000000000000000000000000000000000..496dd26011685f08a0bdacfc654320e663c02c48 --- /dev/null +++ b/src/tools/msvc/getregress.pl @@ -0,0 +1,22 @@ +# +# Script that collects a list of regression tests from a Makefile +# +# $PostgreSQL: pgsql/src/tools/msvc/getregress.pl,v 1.1 2007/03/22 13:43:02 mha Exp $ +# +use strict; +use warnings; + +my $M; + +open($M,"<Makefile") || open($M,"<GNUMakefile") || die "Could not open Makefile"; +undef $/; +my $m = <$M>; +close($M); + +$m =~ s/\\[\r\n]*//gs; +if ($m =~ /^REGRESS\s*=\s*(.*)$/gm) +{ + my $t = $1; + $t =~ s/\s+/ /g; + print "SET TESTS=$t"; +}