]> granicus.if.org Git - postgis/commitdiff
Disable interrupt tests by default, now requires --with-interrupt-tests to turn on.
authorRegina Obe <lr@pcorp.us>
Tue, 24 Apr 2018 09:28:02 +0000 (09:28 +0000)
committerRegina Obe <lr@pcorp.us>
Tue, 24 Apr 2018 09:28:02 +0000 (09:28 +0000)
This is to quiet false alarms which often happen on a busy box
Closes #4074

git-svn-id: http://svn.osgeo.org/postgis/branches/2.3@16551 b70326c6-7e19-0410-871a-916f4a2858ee

NEWS
configure.ac

diff --git a/NEWS b/NEWS
index 2f91b128643fa8e6a07d8f30a09a8f42ad807c4e..60c73e08aa252a5a1d4bd38329d90ee5dd9cddbb 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -4,7 +4,7 @@ PostGIS 2.3.8
   * Bug Fixes and Enchantments
 
   - #4071, ST_ClusterKMeans crash on NULL/EMPTY fixed (Darafei Praliaskouski)
-
+  - #4074, Disable interrupt tests by default (Regina Obe)
 
 PostGIS 2.3.7
 2018/04/06
index 96a7b39f03e05698d5a23bc08a533213791b7539..40ea590a1645bc266a270f72af68d4c94349eb26 100644 (file)
@@ -434,7 +434,7 @@ if test "x$LIBLWGEOM_ONLY" = "xno"; then
   PGSQL_MAJOR_VERSION=`echo $PGSQL_FULL_VERSION | sed 's/[[^0-9]]*\([[0-9]]*\).*/\1/'`
   PGSQL_MINOR_VERSION=`echo $PGSQL_FULL_VERSION | sed 's/[[^\.]]*\.\([[0-9]]*\).*/\1/'`
   PGSQL_MINOR_VERSION=`echo $PGSQL_MINOR_VERSION | sed 's/.*devel.*/0/'`
-  
+
   if test $PGSQL_MAJOR_VERSION -gt 9; then
        dnl ==================================================================
        dnl Starting with PostgreSQL 10, major is the new minor
@@ -442,7 +442,7 @@ if test "x$LIBLWGEOM_ONLY" = "xno"; then
        dnl===================================================================
        PGSQL_MINOR_VERSION=0
   fi
-  
+
   POSTGIS_PGSQL_VERSION="$PGSQL_MAJOR_VERSION$PGSQL_MINOR_VERSION"
 
   PGSQL_PKGLIBDIR=`$PG_CONFIG --pkglibdir`
@@ -1092,14 +1092,20 @@ AC_ARG_WITH([interrupt-tests],
                     [Disable the interrupt tests (for CI servers)])],
     [], [])
 
-if test "x$with_interrupt_tests" != "xno"; then
-    INTERRUPTTESTS="yes"
+AC_ARG_WITH([interrupt-tests],
+    [AS_HELP_STRING([--with-interrupt-tests],
+                    [Enable interrupt tests])],
+    [INTERRUPTTESTS="yes"], [])
+
+if test "x$with_interrupt_tests" = "xno"; then
+    INTERRUPTTESTS="no"
 fi
 
 AC_SUBST([INTERRUPTTESTS])
 
 
 
+
 dnl ===========================================================================
 dnl SRID stuff
 dnl ===========================================================================