]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tests: update tests/httpd references to tests/http
authorArne Soete <arne.soete@irc.vib-ugent.be>
Tue, 28 Mar 2023 12:42:48 +0000 (14:42 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 28 Mar 2023 15:50:59 +0000 (17:50 +0200)
tests/httpd was renamed to tests/http in #10654. This patch updates some
references in the README

Closes #10854

tests/http/README.md

index 69e6760e8870bbbb0c9b0885f0c37e396597e81d..3a4b26394346756173075b9c4e1bd0cc70c557e3 100644 (file)
@@ -4,13 +4,13 @@ Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
 SPDX-License-Identifier: curl
 -->
 
-# The curl HTTPD Test Suite
+# The curl HTTP Test Suite
 
 This is an additional test suite using a combination of Apache httpd and nghttpx servers to perform various tests beyond the capabilities of the standard curl test suite.
 
 # Usage
 
-The test cases and necessary files are in `tests/httpd`. You can invoke `pytest` from there or from the top level curl checkout and it will find all tests.
+The test cases and necessary files are in `tests/http`. You can invoke `pytest` from there or from the top level curl checkout and it will find all tests.
 
 ```
 curl> pytest
@@ -18,7 +18,7 @@ platform darwin -- Python 3.9.15, pytest-6.2.0, py-1.10.0, pluggy-0.13.1
 rootdir: /Users/sei/projects/curl
 collected 5 items
 
-tests/httpd/test_01_basic.py .....
+tests/http/test_01_basic.py .....
 ```
 
 Pytest takes arguments. `-v` increases its verbosity and can be used several times. `-k <expr>` can be used to run only matching test cases. The `expr` can be something resembling a python test or just a string that needs to match test cases in their names.