[SCM] PostGIS branch stable-3.4 updated. 3.4.4-83-g7796c5a55
git at osgeo.org
git at osgeo.org
Mon Feb 9 02:16:07 PST 2026
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.4 has been updated
via 7796c5a557604d7f5c692088c0addad6e5d08049 (commit)
from d341f18aa3a31f90671f8cb3f8a11f1f7bf3c188 (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 7796c5a557604d7f5c692088c0addad6e5d08049
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Aug 27 12:33:09 2025 +0200
Make sure "make check" is unbuffered during upgrade checks
Fixes some cases of unexpected content in log file
diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index 04471616d..db3ba0424 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -178,7 +178,7 @@ compatible_upgrade()
check_downgrade()
{
RUNTESTFLAGS="-v --extension --upgrade-path=${UPGRADE_PATH} ${USERTESTFLAGS}" \
- ${MAKE} -C ${REGDIR} check "TESTS=${SRCDIR}/regress/core/regress.sql" ${MAKE_ARGS} > ${TMPDIR}/log 2>&1
+ unbuffer ${MAKE} -C ${REGDIR} check "TESTS=${SRCDIR}/regress/core/regress.sql" ${MAKE_ARGS} > ${TMPDIR}/log 2>&1
if test $? = 0; then
echo "FAIL: ${test_label} did not error out:"
tail ${TMPDIR}/log
-----------------------------------------------------------------------
Summary of changes:
utils/check_all_upgrades.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list