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
|
{ "basic":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["basic"]
, "test": ["basic.sh"]
, "deps": [["end-to-end", "tool-under-test"]]
}
, "export":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["export"]
, "test": ["export.sh"]
, "deps":
[["end-to-end", "tool-under-test"], ["end-to-end", "mr-tool-under-test"]]
}
, "tc-deps":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["tc-deps"]
, "test": ["tc-deps.sh"]
, "deps":
[["end-to-end", "tool-under-test"], ["end-to-end", "mr-tool-under-test"]]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "deps": ["basic", "export", "tc-deps"]
}
}
|