[libsoup/apache-tests-failure] tests: disable parallelism in the proxy test



commit 705bc80211402c7c2f33f3e7b2954b5ac2662e7b
Author: Claudio Saavedra <csaavedra igalia com>
Date:   Fri Mar 15 19:42:08 2019 +0200

    tests: disable parallelism in the proxy test
    
    The proxy test uses apache, so it shouldn't run in parallel (see 5c1eea7).
    For some reason parallelism wasn't disabled for this test, causing random
    failures in CI.
    
    Fixes #142

 tests/httpd.conf.in | 2 +-
 tests/meson.build   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/tests/httpd.conf.in b/tests/httpd.conf.in
index 93fb7ff4..c90f1c69 100644
--- a/tests/httpd.conf.in
+++ b/tests/httpd.conf.in
@@ -11,7 +11,7 @@ DocumentRoot .
 GracefulShutdownTimeout 1
 
 # Change this to "./error.log" if it's failing and you don't know why
-ErrorLog /dev/null
+ErrorLog ./error.log
 
 LoadModule mpm_prefork_module   @APACHE_MODULE_DIR@/mod_mpm_prefork.so
 LoadModule alias_module         @APACHE_MODULE_DIR@/mod_alias.so
diff --git a/tests/meson.build b/tests/meson.build
index 8176f29b..1f0ff7cf 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -49,7 +49,7 @@ if have_apache
     ['auth', false],
     ['connection', false],
     ['range', false],
-    ['proxy', true],
+    ['proxy', false],
     ['pull-api', false],
   ]
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]