blob: 4ab8a9d222ac687f24d3bd55fd12e133e00e5a2a [file] [log] [blame]
Roger Meier40cc2322014-06-11 11:09:14 +02001{
2 "client": [
3 {
4 "description": "Python TestClient",
5 "lib": "py",
6 "executable": "py/TestClient.py",
7 "extra_args": ["--genpydir=py/gen-py"],
8 "protocols": [
9 "binary",
10 "compact",
11 "json"
12 ],
13 "transports": [
14 "buffered",
15 "framed"
16 ]
17 },
18 {
19 "description": "C++ TestClient",
20 "lib": "cpp",
21 "executable": "cpp/TestClient",
22 "protocols": [
23 "binary",
24 "compact",
25 "json"
26 ],
27 "transports": [
28 "buffered",
29 "framed",
30 "http"
31 ]
32 }
33 ],
34 "server": [
35 {
36 "description": "Python TSimpleServer",
37 "lib": "py",
38 "executable": "py/TestServer.py",
39 "extra_args": ["--genpydir=py/gen-py", "TSimpleServer"],
40 "extra_delay": 0,
41 "protocols": [
42 "binary",
43 "compact",
44 "json"
45 ],
46 "transports": [
47 "buffered",
48 "framed"
49 ]
50 },
51 {
52 "description": "C++ TestServer",
53 "lib": "cpp",
54 "executable": "cpp/TestServer",
55 "protocols": [
56 "binary",
57 "compact",
58 "json"
59 ],
60 "transports": [
61 "buffered",
62 "framed",
63 "http"
64 ]
65 }
66 ]
67}