[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-344-g8aa3d87bb

git at osgeo.org git at osgeo.org
Thu Sep 7 08:07:56 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  8aa3d87bbeb7ff1309eb34a795c704e05cae9192 (commit)
       via  7bb2920090c82bdd0cb14a18b95af0afc3f4df93 (commit)
      from  1cebea67483e05969215878cb3a026295a74c232 (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 8aa3d87bbeb7ff1309eb34a795c704e05cae9192
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Sep 7 17:07:30 2023 +0200

    run_test.pl: reduce verbosity of finding tools

diff --git a/regress/run_test.pl b/regress/run_test.pl
index afbca0e46..88d5de3c6 100755
--- a/regress/run_test.pl
+++ b/regress/run_test.pl
@@ -130,12 +130,12 @@ sub findOrDie
 {
     my $exec = shift;
     my $verbose = shift;
-    printf "Checking for %s ... ", $exec if $verbose;
+    printf "Checking for %s ... ", $exec if $verbose gt 1;
     foreach my $d ( split /:/, $ENV{PATH} )
     {
         my $path = $d . '/' . $exec;
         if ( -x $path ) {
-            if ( $verbose ) {
+            if ( $verbose gt 1 ) {
                 print "found";
                 print " ($path)" if $verbose gt 1;
                 print "\n";

commit 7bb2920090c82bdd0cb14a18b95af0afc3f4df93
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Sep 7 17:06:08 2023 +0200

    Stop printing the whole list of tests being run on 'make check'
    
    It's not too useful after all

diff --git a/regress/runtest.mk b/regress/runtest.mk
index b56632869..4b95b7e37 100644
--- a/regress/runtest.mk
+++ b/regress/runtest.mk
@@ -22,7 +22,7 @@ check-regress:
 	@echo "RUNTESTFLAGS: $(RUNTESTFLAGS)"
 	@echo "RUNTESTFLAGS_INTERNAL: $(RUNTESTFLAGS_INTERNAL)"
 
-	POSTGIS_TOP_BUILD_DIR=$(abs_top_builddir) $(PERL) $(top_srcdir)/regress/run_test.pl $(RUNTESTFLAGS) $(RUNTESTFLAGS_INTERNAL) $(TESTS)
+	@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"; \

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

Summary of changes:
 regress/run_test.pl | 4 ++--
 regress/runtest.mk  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list