mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
## Problem We don't currently run tests for PostGIS in our test environment. ## Summary of Changes - Added PostGIS test support for PostgreSQL v16 and v17 - Configured different PostGIS versions based on PostgreSQL version: - PostgreSQL v17: PostGIS 3.5.0 - PostgreSQL v14/v15/v16: PostGIS 3.3.3 - Added necessary test scripts and configurations This ensures our PostgreSQL implementation remains compatible with this widely-used extension. --------- Co-authored-by: Alexander Bayandin <alexander@neon.tech> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
22 lines
815 B
Diff
22 lines
815 B
Diff
diff --git a/regress/runtest.mk b/regress/runtest.mk
|
|
index c051f03..010e493 100644
|
|
--- a/regress/runtest.mk
|
|
+++ b/regress/runtest.mk
|
|
@@ -24,16 +24,6 @@ check-regress:
|
|
|
|
POSTGIS_TOP_BUILD_DIR=$(abs_top_builddir) $(PERL) $(top_srcdir)/regress/run_test.pl $(RUNTESTFLAGS) $(RUNTESTFLAGS_INTERNAL) $(TESTS)
|
|
|
|
- @if echo "$(RUNTESTFLAGS)" | grep -vq -- --upgrade; then \
|
|
- echo "Running upgrade test as RUNTESTFLAGS did not contain that"; \
|
|
- POSTGIS_TOP_BUILD_DIR=$(abs_top_builddir) $(PERL) $(top_srcdir)/regress/run_test.pl \
|
|
- --upgrade \
|
|
- $(RUNTESTFLAGS) \
|
|
- $(RUNTESTFLAGS_INTERNAL) \
|
|
- $(TESTS); \
|
|
- else \
|
|
- echo "Skipping upgrade test as RUNTESTFLAGS already requested upgrades"; \
|
|
- fi
|
|
|
|
check-long:
|
|
$(PERL) $(top_srcdir)/regress/run_test.pl $(RUNTESTFLAGS) $(TESTS) $(TESTS_SLOW)
|