54 lines
1.9 KiB
Diff
54 lines
1.9 KiB
Diff
From dc0725244a3163f1e2d5f51165db3a1a430f3ba0 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Stenberg <daniel@haxx.se>
|
|
Date: Tue, 27 Dec 2022 11:50:23 +0100
|
|
Subject: [PATCH] runtests: support crlf="yes" for verify/proxy
|
|
|
|
Conflict: Context adaptation
|
|
Reference: https://github.com/curl/curl/commit/dc0725244a3163f1e2d5f51165db3a1a430f3ba0
|
|
---
|
|
tests/FILEFORMAT.md | 4 ++--
|
|
tests/runtests.pl | 5 +++++
|
|
2 files changed, 7 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/tests/FILEFORMAT.md b/tests/FILEFORMAT.md
|
|
index 70a802c..be3bfe2 100644
|
|
--- a/tests/FILEFORMAT.md
|
|
+++ b/tests/FILEFORMAT.md
|
|
@@ -565,7 +565,7 @@ changing protocol data such as port numbers or user-agent strings.
|
|
One perl op per line that operates on the protocol dump. This is pretty
|
|
advanced. Example: `s/^EPRT .*/EPRT stripped/`.
|
|
|
|
-### `<protocol [nonewline="yes"] crlf="yes">`
|
|
+### `<protocol [nonewline="yes"][crlf="yes"]>`
|
|
|
|
the protocol dump curl should transmit, if `nonewline` is set, we will cut off
|
|
the trailing newline of this given data before comparing with the one actually
|
|
@@ -575,7 +575,7 @@ comparisons are made.
|
|
`crlf=yes` forces the newlines to become CRLF even if not written so in the
|
|
test.
|
|
|
|
-### `<proxy [nonewline="yes"]>`
|
|
+### `<proxy [nonewline="yes"][crlf="yes"]>`
|
|
|
|
The protocol dump curl should transmit to a HTTP proxy (when the http-proxy
|
|
server is used), if `nonewline` is set, we will cut off the trailing newline
|
|
diff --git a/tests/runtests.pl b/tests/runtests.pl
|
|
index dd12c92..084f1b5 100755
|
|
--- a/tests/runtests.pl
|
|
+++ b/tests/runtests.pl
|
|
@@ -4634,6 +4634,11 @@ sub singletest {
|
|
}
|
|
}
|
|
|
|
+ if($hash{'crlf'} ||
|
|
+ ($has_hyper && ($keywords{"HTTP"} || $keywords{"HTTPS"}))) {
|
|
+ map subNewlines(0, \$_), @protstrip;
|
|
+ }
|
|
+
|
|
$res = compare($testnum, $testname, "proxy", \@out, \@protstrip);
|
|
if($res) {
|
|
return $errorreturncode;
|
|
--
|
|
2.33.0
|
|
|