diff options
author | Andrew Dunstan | 2011-05-15 22:03:19 +0000 |
---|---|---|
committer | Andrew Dunstan | 2011-05-15 22:03:19 +0000 |
commit | 20bacc9560b29b33b6cad4e53c6a77e6c8a71c5d (patch) | |
tree | 0a7987b659a4df0fcaf7df399d5ee2f7803bbff1 | |
parent | 840826e36cd40e63a3af05d9b41dc65250bc7a7a (diff) |
Add missing check function lookup.
-rw-r--r-- | src/tools/msvc/vcregress.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 769f93135b..98c8c62425 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -71,7 +71,8 @@ my %command = ( PLCHECK => \&plcheck, INSTALLCHECK => \&installcheck, ECPGCHECK => \&ecpgcheck, - CONTRIBCHECK => \&contribcheck + CONTRIBCHECK => \&contribcheck, + ISOLATIONCHECK => \&isolationcheck, ); my $proc = $command{$what}; |