From: Sandro Santilli Date: Thu, 10 Oct 2013 07:11:34 +0000 (+0000) Subject: Advertise -v, do not load rc file while fetching databases list X-Git-Tag: 2.2.0rc1~1336 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59d00840811f136885ca5a7df8ad2a2926acac3a;p=postgis Advertise -v, do not load rc file while fetching databases list git-svn-id: http://svn.osgeo.org/postgis/trunk@12024 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/run_test.pl b/regress/run_test.pl index dc2630336..6b1a970cf 100755 --- a/regress/run_test.pl +++ b/regress/run_test.pl @@ -171,7 +171,7 @@ print "TMPDIR is $TMPDIR\n"; # Prepare the database ################################################################## -my @dblist = grep(/$DB/, split(/\n/, `psql -l`)); +my @dblist = grep(/$DB/, split(/\n/, `psql -Xl`)); my $dbcount = @dblist; if ( $dbcount == 0 ) @@ -362,15 +362,15 @@ sub usage die qq{ Usage: $0 [] [] Options: - --verbose be verbose about failures - --nocreate do not create the regression database on start - --upgrade source the upgrade scripts on start - --nodrop do not drop the regression database on exit - --raster load also raster extension - --topology load also topology extension - --sfcgal use also sfcgal backend - --clean cleanup test logs on exit - --expect save obtained output as expected + -v, --verbose be verbose about failures + --nocreate do not create the regression database on start + --upgrade source the upgrade scripts on start + --nodrop do not drop the regression database on exit + --raster load also raster extension + --topology load also topology extension + --sfcgal use also sfcgal backend + --clean cleanup test logs on exit + --expect save obtained output as expected }; }