blob: f726daddffc3df6ceea3e25024446af5617faeff [file] [log] [blame]
Nobuaki Sukegawa378b7272016-01-03 17:04:50 +09001[
2 {
3 "description": "THeader detects unframed binary wire format",
4 "name": "theader_unframed_binary",
5 "command": [
6 "python",
7 "theader_binary.py"
8 ],
9 "protocols": ["header"],
10 "transports": ["buffered"],
11 "sockets": ["ip"],
12 "workdir": "features"
13 },
14 {
15 "description": "THeader detects framed binary wire format",
16 "name": "theader_framed_binary",
17 "command": [
18 "python",
19 "theader_binary.py",
20 "--override-transport=framed"
21 ],
22 "protocols": ["header"],
23 "transports": ["buffered"],
24 "sockets": ["ip"],
25 "workdir": "features"
Nobuaki Sukegawa85650612016-01-08 03:26:44 +090026 },
27 {
28 "name": "limit_string_length",
29 "command": [
30 "python",
31 "string_limit.py",
32 "--limit=50"
33 ],
34 "remote_args": [
35 "--string-limit=50"
36 ],
37 "protocols": [
38 "binary",
39 "compact"
40 ],
41 "transports": ["buffered"],
42 "sockets": ["ip"],
43 "workdir": "features"
44 },
45 {
46 "name": "limit_container_length",
47 "command": [
48 "python",
49 "container_limit.py",
50 "--limit=50"
51 ],
52 "remote_args": [
53 "--container-limit=50"
54 ],
55 "protocols": [
56 "binary",
57 "compact"
58 ],
59 "transports": ["buffered"],
60 "sockets": ["ip"],
61 "workdir": "features"
Nobuaki Sukegawa378b7272016-01-03 17:04:50 +090062 }
63]