Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test1556: adjust for hyper #8105

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion tests/data/DISABLED
Expand Up @@ -66,7 +66,6 @@
1533
1540
1554
1556
1591
1700
1701
Expand Down
26 changes: 13 additions & 13 deletions tests/data/test1556
Expand Up @@ -10,18 +10,18 @@ HTTP GET
# Server-side
<reply>
<data nocheck="yes">
HTTP/1.1 200 OK
Date: Tue, 09 Nov 2010 14:49:00 GMT
Server: test-server/fake
Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
ETag: "21025-dc7-39462498"
Accept-Ranges: bytes
Content-Length: 6
Connection: close
Content-Type: text/html
Funny-head: yesyes
Long: %repeat[100001 x A]%

HTTP/1.1 200 OK
Date: Tue, 09 Nov 2010 14:49:00 GMT
Server: test-server/fake
Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
ETag: "21025-dc7-39462498"
Accept-Ranges: bytes
Content-Length: 6
Connection: close
Content-Type: text/html
Funny-head: yesyes
Long: %repeat[100001 x A]%
-foo-
</data>
</reply>
Expand Down Expand Up @@ -54,7 +54,7 @@ Accept: */*
</protocol>
<stdout>
-foo-
Max: 100008
Max = 100009
</stdout>
</verify>
</testcase>
4 changes: 2 additions & 2 deletions tests/libtest/lib1556.c
Expand Up @@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
Expand Down Expand Up @@ -67,7 +67,7 @@ int test(char *URL)
goto test_cleanup;
}

printf("Max: %ld\n", (long)info.largest);
printf("Max = %ld\n", (long)info.largest);

test_cleanup:

Expand Down