Whitespaces
winbind
winbuild
-winidn
WinIDN
WinLDAP
winsock
install: gsasl
generate: -DOPENSSL_ROOT_DIR=$(brew --prefix openssl) -DCURL_USE_GSASL=ON -DUSE_APPLE_IDN=ON -DENABLE_WEBSOCKETS=ON
macos-version-min: '10.9'
- tflags: '~1034 ~1035' # AppleIDN issues: https://github.com/curl/curl/issues/14176
- name: 'OpenSSL +static'
generate: -DOPENSSL_ROOT_DIR=$(brew --prefix openssl) -DBUILD_STATIC_LIBS=ON
macos-version-min: '10.9'
run: |
export TFLAGS='-j14 !TFTP !MQTT !WebSockets !SMTP !FTP ${{ matrix.tflags }}'
if [[ '${{ matrix.config }}' = *'-DUSE_WIN32_IDN=ON'* ]]; then
- TFLAGS+=' ~165'
if [[ '${{ matrix.config }}' != *'-DENABLE_UNICODE=ON'* ]]; then
TFLAGS+=' ~1448 ~2046 ~2047'
fi
11.4 HTTP test server 'connection-monitor' problems
11.5 Connection information when using TCP Fast Open
11.6 test cases sometimes timeout
+ 11.7 AppleIDN test failures
+ 11.8 WinIDN test failures
12. LDAP
12.1 OpenLDAP hangs after returning results
See https://github.com/curl/curl/issues/13350
+11.7 AppleIDN test failures
+
+ Test 1034 and 1035 fail on macOS when built to use AppleIDN.
+
+ See https://github.com/curl/curl/issues/14176
+
+11.8 WinIDN test failures
+
+ Test 165 disabled when built with WinIDN.
+
12. LDAP
12.1 OpenLDAP hangs after returning results
Features testable here are:
- `alt-svc`
+- `AppleIDN`
- `bearssl`
- `brotli`
- `c-ares`
- `verbose-strings`
- `wakeup`
- `win32`
+- `WinIDN`
- `wolfssh`
- `wolfssl`
- `xattr`
%if bearssl
313
%endif
+%if AppleIDN
+1034
+1035
+%endif
+%if WinIDN
+165
+%endif
# nghttp2 supports h2c, hyper does not
$feature{"h2c"} = 1;
}
+ if ($libcurl =~ /AppleIDN/) {
+ $feature{"AppleIDN"} = 1;
+ }
+ if ($libcurl =~ /WinIDN/) {
+ $feature{"WinIDN"} = 1;
+ }
if ($libcurl =~ /libssh2/i) {
$feature{"libssh2"} = 1;
}