[SCM] PostGIS branch master updated. 3.6.0rc2-14-g7609db888
git at osgeo.org
git at osgeo.org
Wed Aug 27 03:34:29 PDT 2025
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 7609db888c9615e3d8a8d4ab93a6a3276dedc05a (commit)
from 74a2b2fd328dd5e436a63a21172e1add8d36954d (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 7609db888c9615e3d8a8d4ab93a6a3276dedc05a
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