summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2007-09-28 00:14:58 +0000
committerAndrew Dunstan <andrew@dunslane.net>2007-09-28 00:14:58 +0000
commitc0a8276061f57d85a5fe11dd13cefd1182c4bc80 (patch)
tree0af4971a0fec313929f8665cbdcd5295509a53b3 /src
parent3396d1c695a52f5f4b1bf4af1f96ff64cf65807a (diff)
exclude contrib/tsearch2 from regression tests.
Diffstat (limited to 'src')
-rw-r--r--src/tools/msvc/vcregress.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl
index 6a357a02359..7585d4e41f5 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -1,7 +1,7 @@
# -*-perl-*- hey - emacs - this is a perl file
-# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.3 2007/09/24 21:42:34 adunstan Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.4 2007/09/28 00:14:58 adunstan Exp $
use strict;
@@ -188,6 +188,7 @@ sub contribcheck
my $mstat = 0;
foreach my $module (glob("*"))
{
+ next if $module eq 'tsearch2';
next unless -d "$module/sql" &&
-d "$module/expected" &&
(-f "$module/Makefile" || -f "$module/GNUmakefile");