You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2021/01/17 22:29:12 UTC

svn commit: r1885626 - in /httpd/httpd/trunk: .travis.yml test/travis_run_linux.sh

Author: ylavic
Date: Sun Jan 17 22:29:12 2021
New Revision: 1885626

URL: http://svn.apache.org/viewvc?rev=1885626&view=rev
Log:
Get Lua dev package from liblua5.3-dev.

Call sysctl though sudo.

Modified:
    httpd/httpd/trunk/.travis.yml
    httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/.travis.yml?rev=1885626&r1=1885625&r2=1885626&view=diff
==============================================================================
--- httpd/httpd/trunk/.travis.yml (original)
+++ httpd/httpd/trunk/.travis.yml Sun Jan 17 22:29:12 2021
@@ -19,7 +19,7 @@ addons:
       - libapr1-dev
       - libaprutil1-dev
       - perl-doc
-      - lua5.3-dev
+      - liblua5.3-dev
       - libbrotli-dev
       - libcurl4-openssl-dev
       - libsystemd-dev
@@ -137,7 +137,7 @@ jobs:
             - libapr1-dev
             - libaprutil1-dev
             - perl-doc
-            - lua5.3-dev
+            - liblua5.3-dev
             - libbrotli-dev
             - libcurl4-openssl-dev
             - libsystemd-dev
@@ -159,7 +159,7 @@ jobs:
             - libapr1-dev
             - libaprutil1-dev
             - perl-doc
-            - lua5.3-dev
+            - liblua5.3-dev
             - libbrotli-dev
             - libcurl4-openssl-dev
             - libsystemd-dev
@@ -181,7 +181,7 @@ jobs:
             - libapr1-dev
             - libaprutil1-dev
             - perl-doc
-            - lua5.3-dev
+            - liblua5.3-dev
             - libbrotli-dev
             - libcurl4-openssl-dev
             - libsystemd-dev
@@ -291,7 +291,7 @@ jobs:
             - libapr1-dev
             - libaprutil1-dev
             - perl-doc
-            - lua5.3-dev
+            - liblua5.3-dev
             - libbrotli-dev
             - libcurl4-openssl-dev
             - libsystemd-dev

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1885626&r1=1885625&r2=1885626&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Sun Jan 17 22:29:12 2021
@@ -90,8 +90,10 @@ if ! test -v SKIP_TESTING; then
         export ASAN_OPTIONS="log_path=$PWD/asan.log"
     fi
 
+    # Try to keep all potential coredumps from all processes
+    sudo sysctl -w kernel.core_uses_pid=1 2>/dev/null || true
+
     if test -v WITH_TEST_SUITE; then
-        sysctl -w kernel.core_uses_pid=1 2>/dev/null || true
         make check TESTS="${TESTS}" TEST_CONFIG="${TEST_ARGS}"
         RV=$?
     else