tidy-up: OS names

Use these words and casing more consistently across text, comments and
one curl tool output:
AIX, ALPN, ANSI, BSD, Cygwin, Darwin, FreeBSD, GitHub, HP-UX, Linux,
macOS, MS-DOS, MSYS, MinGW, NTLM, POSIX, Solaris, UNIX, Unix, Unicode,
WINE, WebDAV, Win32, winbind, WinIDN, Windows, Windows CE, Winsock.

Mostly OS names and a few more.

Also a couple of other minor text fixups.

Closes #14360
This commit is contained in:
Viktor Szakats 2024-08-03 01:09:57 +02:00
parent a4ad7dc5a3
commit f81f351b9a
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
146 changed files with 355 additions and 358 deletions

View file

@ -34,7 +34,7 @@
#include <stdlib.h>
#include <string.h>
/* somewhat unix-specific */
/* somewhat Unix-specific */
#include <sys/time.h>
#include <unistd.h>

View file

@ -34,7 +34,7 @@
#include <stdlib.h>
#include <string.h>
/* somewhat unix-specific */
/* somewhat Unix-specific */
#include <sys/time.h>
#include <unistd.h>

View file

@ -34,7 +34,7 @@
#include <stdlib.h>
#include <string.h>
/* somewhat unix-specific */
/* somewhat Unix-specific */
#include <sys/time.h>
#include <unistd.h>

View file

@ -34,7 +34,7 @@
#include <stdlib.h>
#include <string.h>
/* somewhat unix-specific */
/* somewhat Unix-specific */
#include <sys/time.h>
#include <unistd.h>

View file

@ -95,7 +95,7 @@ class TestUnix:
yield faker
faker.stop()
# download http: via unix socket
# download http: via Unix socket
def test_11_01_unix_connect_http(self, env: Env, httpd, uds_faker, repeat):
curl = CurlClient(env=env)
url = f'http://{env.domain1}:{env.http_port}/data.json'
@ -105,7 +105,7 @@ class TestUnix:
])
r.check_response(count=1, http_status=200)
# download https: via unix socket
# download https: via Unix socket
@pytest.mark.skipif(condition=not Env.have_ssl_curl(), reason=f"curl without SSL")
def test_11_02_unix_connect_http(self, env: Env, httpd, uds_faker, repeat):
curl = CurlClient(env=env)
@ -116,7 +116,7 @@ class TestUnix:
])
r.check_response(exitcode=35, http_status=None)
# download HTTP/3 via unix socket
# download HTTP/3 via Unix socket
@pytest.mark.skipif(condition=not Env.have_h3(), reason='h3 not supported')
def test_11_03_unix_connect_quic(self, env: Env, httpd, uds_faker, repeat):
curl = CurlClient(env=env)