From 18416b2cf0822ec9579854291292cb0ba4d4844a Mon Sep 17 00:00:00 2001 From: cypherpunks Date: Fri, 17 Aug 2018 17:25:24 +0000 Subject: [PATCH] test/protover: add test for whitespace parsing bug --- src/test/test_protover.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/test_protover.c b/src/test/test_protover.c index 907b334bee..b9b0858595 100644 --- a/src/test/test_protover.c +++ b/src/test/test_protover.c @@ -579,6 +579,10 @@ test_protover_vote_roundtrip(void *args) { "Link=1-2-3", NULL }, { "Faux=1-2-", NULL }, { "Faux=1-2-3", NULL }, + { "Link=\t1,3", NULL }, + { "Link=1\n,3", NULL }, + { "Faux=1,\r3", NULL }, + { "Faux=1,3\f", NULL }, /* Large integers */ { "Link=4294967296", NULL }, /* Large range */