summaryrefslogtreecommitdiffstats
path: root/test/modules/http2/test_103_upgrade.py
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2022-02-25 14:17:11 +0100
committerStefan Eissing <icing@apache.org>2022-02-25 14:17:11 +0100
commitef648ab01d3610a87b35b95448b189a7585df200 (patch)
treea7b7ca30906896ad29982a312a9b34c4de645e21 /test/modules/http2/test_103_upgrade.py
parent *) test: assume that modules which do not appear in our list of DSO_MODULES (diff)
downloadapache2-ef648ab01d3610a87b35b95448b189a7585df200.tar.xz
apache2-ef648ab01d3610a87b35b95448b189a7585df200.zip
*) test: check for the mpm module used and disable http2 tests
for prefork. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1898417 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/modules/http2/test_103_upgrade.py')
-rw-r--r--test/modules/http2/test_103_upgrade.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/modules/http2/test_103_upgrade.py b/test/modules/http2/test_103_upgrade.py
index 92f9e36498..2fa7d1d68a 100644
--- a/test/modules/http2/test_103_upgrade.py
+++ b/test/modules/http2/test_103_upgrade.py
@@ -1,8 +1,9 @@
import pytest
-from .env import H2Conf
+from .env import H2Conf, H2TestEnv
+@pytest.mark.skipif(condition=H2TestEnv.is_unsupported, reason="mod_http2 not supported here")
class TestUpgrade:
@pytest.fixture(autouse=True, scope='class')