[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-67-gfd7c1b74f
git at osgeo.org
git at osgeo.org
Tue Aug 29 09:53:10 PDT 2023
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 fd7c1b74f435ea123847bb5bdf1be2ab125a3619 (commit)
from 42cebcf5d8d26a6d23b8e4943a26b7003146179d (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 fd7c1b74f435ea123847bb5bdf1be2ab125a3619
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Aug 29 18:51:58 2023 +0200
Allow passing make arguments to utils/check_all_upgrades.sh
Example use:
MAKE_ARGS=TESTS=$PWD/mytest \
utils/check_all_upgrades.sh -s :auto
diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index 0d945d888..4f3b66f5c 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -207,7 +207,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do
fi
echo "Testing ${test_label}"
RUNTESTFLAGS="-v --extension --upgrade-path=${UPGRADE_PATH} ${USERTESTFLAGS}" \
- make -C ${REGDIR} check && {
+ make -C ${REGDIR} check ${MAKE_ARGS} && {
echo "PASS: ${test_label}"
} || {
echo "FAIL: ${test_label}"
@@ -236,7 +236,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do
fi
echo "Testing ${test_label}"
RUNTESTFLAGS="-v --extension --upgrade-path=${UPGRADE_PATH} ${USERTESTFLAGS}" \
- make -C ${REGDIR} check && {
+ make -C ${REGDIR} check ${MAKE_ARGS} && {
echo "PASS: ${test_label}"
} || {
echo "FAIL: ${test_label}"
@@ -259,7 +259,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do
compatible_upgrade "${test_label}" ${majmin} ${to_version} || continue
echo "Testing ${test_label}"
RUNTESTFLAGS="-v --upgrade-path=${UPGRADE_PATH} ${USERTESTFLAGS}" \
- make -C ${REGDIR} check && {
+ make -C ${REGDIR} check ${MAKE_ARGS} && {
echo "PASS: ${test_label}"
} || {
echo "FAIL: ${test_label}"
-----------------------------------------------------------------------
Summary of changes:
utils/check_all_upgrades.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list