diff options
author | Greg Sabino Mullane | 2013-02-11 21:23:46 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2013-02-11 21:23:46 +0000 |
commit | 84b706211cbc2d289423a3c3e9e960528f53d445 (patch) | |
tree | 6da12753ab991402fd9a4fbf04d34d7a892c54a1 | |
parent | c48944741d2b9724b5e849b2bbf77fa13d72e236 (diff) |
Force tests to use port 5432 in case PGPORT is conflicting.
-rw-r--r-- | t/CP_Testing.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/CP_Testing.pm b/t/CP_Testing.pm index f12831f42..292ff5a36 100644 --- a/t/CP_Testing.pm +++ b/t/CP_Testing.pm @@ -429,7 +429,7 @@ sub run { my $dbuser = $self->{testuser} || die 'No testuser?'; my $dbname = $self->{dbname} || die 'No dbname?'; - my $com = qq{perl check_postgres.pl --no-check_postgresrc --action=$action}; + my $com = qq{perl check_postgres.pl --no-check_postgresrc --dbport=5432 --action=$action}; if ($extra !~ /dbhost/) { $com .= qq{ --dbhost="$dbhost"}; } |