[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-228-g009004868
git at osgeo.org
git at osgeo.org
Thu Oct 20 06:26:10 PDT 2022
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via 009004868bda8b495b4c8340239abe26b828250d (commit)
from 990201aba8d906bb8d10a05fce627d88943ec022 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 009004868bda8b495b4c8340239abe26b828250d
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Oct 20 15:25:22 2022 +0200
Fix false success when db preparation fails
See
https://github.com/postgis/postgis/pull/705#issuecomment-1285479317
diff --git a/regress/run_test.pl b/regress/run_test.pl
index ffb83042b..ad83e8c6d 100755
--- a/regress/run_test.pl
+++ b/regress/run_test.pl
@@ -53,6 +53,15 @@ our $REGDIR = abs_path(dirname($0));
our $TOP_BUILDDIR = $ENV{"POSTGIS_TOP_BUILD_DIR"} || ${REGDIR} . '/..';
our $sysdiff = !system("diff --strip-trailing-cr $0 $0 2> /dev/null");
+##################################################################
+# Set up some global variables
+##################################################################
+
+my $RUN = 0;
+my $FAIL = 0;
+my $SKIP = 0;
+our $TEST = "";
+
##################################################################
# Parse command line opts
##################################################################
@@ -381,14 +390,6 @@ print " SFCGAL: $sfcgalver\n" if $sfcgalver;
print " GDAL: $gdalver\n" if $gdalver;
-##################################################################
-# Set up some global variables
-##################################################################
-my $RUN = 0;
-my $FAIL = 0;
-my $SKIP = 0;
-our $TEST = "";
-
##################################################################
# Run the tests
##################################################################
-----------------------------------------------------------------------
Summary of changes:
regress/run_test.pl | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list