Ignore temporarily error/warnings from latest libcurl

This commit is contained in:
Fabrice Reix 2025-09-14 11:27:02 +02:00
parent 8a7fdbde7d
commit 9de2099f65
No known key found for this signature in database
GPG Key ID: 71B8BAD935E3190A
3 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,6 @@ error: HTTP connection
--> tests_failed/proxy/proxy.hurl:1:5
|
1 | GET http://localhost:8000/hello
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ (7) Failed to connect to localhost port 1111<<<.*?>>>
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ (7) Failed to connect to localhost port <<<.*?>>>
|

View File

@ -2,6 +2,6 @@ error: HTTP connection
--> tests_ssl/error_client_authentication_password.hurl:1:5
|
1 | GET https://localhost:8003/hello
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (58) <<<.*?>>>
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ <<<.*?>>>
|

View File

@ -254,6 +254,8 @@ def ignore_lines(text: str) -> str:
continue
if "libcurl.so.4: no version information available" in line:
continue
if "* boolean setopt(81) got unsupported argument 2, treated as 1" in line:
continue
lines.append(line)
return "\n".join(lines)