|
1 | 1 | #! /bin/sh
|
2 |
| -# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.47 2004/09/22 19:11:19 tgl Exp $ |
| 2 | +# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.48 2004/10/24 22:09:33 tgl Exp $ |
3 | 3 |
|
4 | 4 | me=`basename$0`
|
5 | 5 | :${TMPDIR=/tmp}
|
@@ -470,7 +470,14 @@ else # not temp-install
|
470 | 470 | if [-n"$PGHOST" ];then
|
471 | 471 | echo"(using postmaster on$PGHOST,$port_info)"
|
472 | 472 | else
|
473 |
| -echo"(using postmaster on Unix socket,$port_info)" |
| 473 | +case$host_platformin |
| 474 | +*-*-mingw32*) |
| 475 | +echo"(using postmaster on localhost socket,$port_info)" |
| 476 | +;; |
| 477 | +*) |
| 478 | +echo"(using postmaster on Unix socket,$port_info)" |
| 479 | +;; |
| 480 | +esac |
474 | 481 | fi
|
475 | 482 | message"dropping database\"$dbname\""
|
476 | 483 | "$bindir/dropdb"$psql_options"$dbname"
|
|