diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-21 09:35:23 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-21 09:35:23 -0400 |
commit | 5b04392c1553e2a3e278a48f8d0e071181c0444f (patch) | |
tree | 1555f57ec4b2ec1f9f7197361c601625cc8f6d9e /src/test | |
parent | 0971b3ce4d03929ef09838209ab87de4f9dfcf1f (diff) | |
parent | e24195c7c1aaecebaf5ef4f81b54da2f0db917c6 (diff) | |
download | tor-5b04392c1553e2a3e278a48f8d0e071181c0444f.tar.gz tor-5b04392c1553e2a3e278a48f8d0e071181c0444f.zip |
Merge branch 'maint-0.2.9' into maint-0.3.2maint-0.3.2
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_protover.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/test_protover.c b/src/test/test_protover.c index 9b94044b91..768332bb69 100644 --- a/src/test/test_protover.c +++ b/src/test/test_protover.c @@ -283,6 +283,10 @@ test_protover_vote_roundtrip(void *args) const char *input; const char *expected_output; } examples[] = { + { "Risqu\u00e9=1", NULL }, + { ",,,=1", NULL }, + { "\xc1=1", NULL }, + { "Foo_Bar=1", NULL }, { "Fkrkljdsf", NULL }, { "Zn=4294967295", NULL }, { "Zn=4294967295-1", NULL }, |