Ignore temporarily error/warnings from latest libcurl
This commit is contained in:
parent
8a7fdbde7d
commit
9de2099f65
|
|
@ -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 <<<.*?>>>
|
||||
|
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@ error: HTTP connection
|
|||
--> tests_ssl/error_client_authentication_password.hurl:1:5
|
||||
|
|
||||
1 | GET https://localhost:8003/hello
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (58) <<<.*?>>>
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ <<<.*?>>>
|
||||
|
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue