summaryrefslogtreecommitdiff
path: root/test/cookies.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/cookies.c')
-rw-r--r--test/cookies.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/cookies.c b/test/cookies.c
index 706ca7e..abd1f36 100644
--- a/test/cookies.c
+++ b/test/cookies.c
@@ -75,9 +75,13 @@ static int parsing(void)
const char *hdr, *name, *value;
} cookies[] = {
{ "Set-Cookie: alpha=bar", "alpha", "bar" },
+#if 0
{ "Set-Cookie2: alpha=bar", "alpha", "bar" },
+#endif
{ "Set-Cookie: beta = bar", "beta", "bar" },
{ "Set-Cookie: delta = bar; norman=fish", "delta", "bar" },
+ /* parsing bug in <0.24.1 */
+ { "Set-Cookie: alpha=beta; path", "alpha", "beta" },
{ NULL, NULL, NULL }
};
int n;