1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{ "native-protocol":
{ "type": ["end-to-end", "with remote"]
, "name": ["native-protocol"]
, "test": ["native-protocol.sh"]
, "deps":
[["end-to-end", "tool-under-test"], ["end-to-end", "mr-tool-under-test"]]
}
, "large-blobs":
{ "type": ["end-to-end", "with remote"]
, "name": ["large-blobs"]
, "test": ["large-blobs.sh"]
, "deps": [["end-to-end", "tool-under-test"]]
}
, "upload-test":
{ "type": ["end-to-end", "with remote"]
, "name": ["upload-test"]
, "test": ["upload-test.sh"]
, "deps": [["end-to-end", "tool-under-test"]]
}
, "install":
{ "type": ["end-to-end", "with remote"]
, "name": ["install"]
, "test": ["install.sh"]
, "deps": [["end-to-end", "tool-under-test"]]
}
, "install-cas":
{ "type": ["end-to-end", "with remote"]
, "name": ["install-cas"]
, "test": ["install-cas.sh"]
, "deps": [["end-to-end", "tool-under-test"]]
, "keep":
[ "out/stdout/remote"
, "out/stdout/remote-raw"
, "out/stdout/local"
, "out/stdout/local-raw"
]
}
, "dispatch":
{ "type": ["end-to-end", "with remote"]
, "name": ["dispatch"]
, "test": ["dispatch.sh"]
, "deps": [["end-to-end", "tool-under-test"]]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "deps":
[ "native-protocol"
, "large-blobs"
, "upload-test"
, "install"
, "install-cas"
, "dispatch"
]
}
}
|