[postgis-tickets] [SCM] PostGIS branch stable-3.1 updated. 3.1.6-18-g6be61f557

git at osgeo.org git at osgeo.org
Fri Aug 12 12:14:43 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, stable-3.1 has been updated
       via  6be61f557ae24392ed9db5943f8a71264bd5e80e (commit)
      from  6ec1e6cafcd53df5890fef65dc776ccd02313181 (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 6be61f557ae24392ed9db5943f8a71264bd5e80e
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Aug 12 21:13:57 2022 +0200

    Drop duplicated variable assignments

diff --git a/raster/test/regress/Makefile.in b/raster/test/regress/Makefile.in
index 91173802e..e93130b49 100644
--- a/raster/test/regress/Makefile.in
+++ b/raster/test/regress/Makefile.in
@@ -1,6 +1,6 @@
 #############################################################################
 #
-# Copyright (c) 2009-2020 Sandro Santilli <strk at kbt.io>
+# Copyright (c) 2009-2022 Sandro Santilli <strk at kbt.io>
 # Copyright (c) 2009 Pierre Racine <pierre.racine at sbf.ulaval.ca>
 # Copyright (c) 2011 Jorge Arevalo <jorge.arevalo at deimos-space.com>
 # Copyright (c) 2011-2013 Regents of the University of California
@@ -24,6 +24,10 @@
 #
 #############################################################################
 
+top_srcdir = @top_srcdir@
+srcdir = @srcdir@
+top_builddir = @top_builddir@
+
 POSTGIS_SRC=../../..
 PERL=@PERL@
 
@@ -42,130 +46,6 @@ REGRESS_INSTALLDIR=$(POSTGIS_SRC)/regress/00-regress-install
 PATH := $(PGSQL_BINDIR):$(PATH)
 export PATH
 
-TEST_FIRST = \
-	check_gdal \
-	load_outdb
-
-TEST_LAST = \
-	clean
-
-TEST_METADATA = \
-	check_raster_columns \
-	check_raster_overviews
-
-TEST_IO = \
-	rt_io
-
-TEST_BASIC_FUNC = \
-	rt_bytea \
-	rt_wkb \
-	box3d \
-	rt_addband \
-	rt_band \
-	rt_tile
-
-TEST_PROPS = \
-	rt_dimensions \
-	rt_scale \
-	rt_pixelsize \
-	rt_upperleft \
-	rt_rotation \
-	rt_georeference \
-	rt_set_properties \
-	rt_isempty \
-	rt_hasnoband \
-	rt_metadata \
-	rt_rastertoworldcoord \
-	rt_worldtorastercoord \
-	rt_convexhull \
-	rt_envelope
-
-TEST_BANDPROPS = \
-	rt_band_properties \
-	rt_set_band_properties \
-	rt_pixelaspolygons \
-	rt_pixelaspoints \
-	rt_pixelascentroids \
-	rt_setvalues_array \
-	rt_summarystats \
-	rt_count \
-	rt_histogram \
-	rt_quantile \
-	rt_valuecount \
-	rt_valuepercent \
-	rt_bandmetadata \
-	rt_pixelvalue \
-	rt_neighborhood \
-	rt_nearestvalue \
-	rt_pixelofvalue \
-	rt_polygon \
-	rt_setbandpath
-
-TEST_UTILITY = \
-	rt_utility \
-	rt_fromgdalraster \
-	rt_asgdalraster \
-	rt_astiff \
-	rt_asjpeg \
-	rt_aspng \
-	rt_reclass \
-	rt_gdalwarp \
-	rt_asraster \
-	rt_dumpvalues \
-	rt_makeemptycoverage \
-	rt_createoverview
-
-TEST_MAPALGEBRA = \
-	rt_mapalgebraexpr \
-	rt_mapalgebrafct \
-	rt_mapalgebraexpr_2raster \
-	rt_mapalgebrafct_2raster \
-	rt_mapalgebrafctngb \
-	rt_mapalgebrafctngb_userfunc \
-	rt_intersection \
-	rt_clip \
-	rt_mapalgebra \
-	rt_mapalgebra_expr \
-	rt_mapalgebra_mask \
-	rt_union \
-	rt_invdistweight4ma \
-	rt_4ma \
-	rt_setvalues_geomval \
-	rt_elevation_functions \
-	rt_colormap \
-	rt_grayscale
-
-TEST_SREL = \
-	rt_gist_relationships \
-	rt_intersects \
-	rt_samealignment \
-	rt_geos_relationships \
-	rt_iscoveragetile
-
-TEST_BUGS = \
-	bug_test_car5 \
-	permitted_gdal_drivers \
-	tickets
-
-TEST_LOADER = \
-	loader/Basic \
-	loader/Projected \
-	loader/BasicCopy \
-	loader/BasicFilename \
-	loader/BasicOutDB \
-	loader/Tiled10x10 \
-	loader/Tiled10x10Copy \
-	loader/Tiled8x8 \
-	loader/TiledAuto \
-	loader/TiledAutoSkipNoData
-
-RASTER_TESTS := $(TEST_FIRST) \
-	$(TEST_METADATA) $(TEST_IO) $(TEST_BASIC_FUNC) \
-	$(TEST_PROPS) $(TEST_BANDPROPS) \
-	$(TEST_UTILITY) $(TEST_MAPALGEBRA) $(TEST_SREL) \
-	$(TEST_BUGS) \
-	$(TEST_LOADER) \
-	$(TEST_LAST)
 
 all:
 	@echo "Use 'make check' to run all tests"
@@ -179,11 +59,7 @@ clean:
 rtpostgis.sql: ../../rt_pg/rtpostgis.sql
 	$(PERL) -lpe "s'\\\$$libdir'$(REGRESS_INSTALLDIR)/lib'g" $< > $@
 
-
-topsrcdir = $(realpath ../../../)
-srcdir = $(realpath .)
-
-include tests.mk
-include ../../../regress/runtest.mk
+include $(srcdir)/tests.mk
+include $(top_srcdir)/regress/runtest.mk
 
 check: check-regress

-----------------------------------------------------------------------

Summary of changes:
 raster/test/regress/Makefile.in | 138 ++--------------------------------------
 1 file changed, 7 insertions(+), 131 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list