Skip to content
Snippets Groups Projects
Commit 62d03f15 authored by Sergey Bronnikov's avatar Sergey Bronnikov Committed by Igor Munkin
Browse files

test: fix format of dictionaries

According to libFuzzer documentation [1] backslash should be escaped.

1. https://llvm.org/docs/LibFuzzer.html#dictionaries

```
$ swim_proto_meta_fuzzer -dict=swim_proto_meta_fuzzer.dict
ParseDictionaryFile: error in line 1
                "\001\000\000\004"
$ swim_proto_member_fuzzer -dict=swim_proto_member_fuzzer.dict
ParseDictionaryFile: error in line 1
                "\022\000\000\000\000\000\000\000"
```

NO_CHANGELOG=internal
NO_DOC=internal
NO_TEST=internal
parent ae02f0cd
No related branches found
No related tags found
No related merge requests found
"\022\000\000\000\000\000\000\000"
"\272\376\377\377\377\377\377\377"
"\\022\\000\\000\\000\\000\\000\\000\\000"
"\\272\\376\\377\\377\\377\\377\\377\\377"
"\001\000\000\004"
"\001\000"
"\\001\\000\\000\\004"
"\\001\\000"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment