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
|
{ "tool-under-test":
{ "type": "install"
, "dirs": [[["@", "src", "", "installed just"], "."]]
, "files": {"bin/tool-under-test": ["@", "src", "", "just"]}
}
, "mr-tool-under-test":
{ "type": "install"
, "arguments_config": ["TEST_BOOTSTRAP_JUST_MR"]
, "dirs":
{ "type": "if"
, "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
, "then": []
, "else": [[["@", "src", "", "installed just-mr"], "."]]
}
, "files":
{ "bin/mr-tool-under-test":
{ "type": "if"
, "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"}
, "then": ["@", "src", "", "bin/just-mr.py"]
, "else": ["@", "src", "", "just-mr"]
}
}
}
, "git-import-under-test":
{ "type": "install"
, "files":
{"bin/git-import-under-test": ["@", "src", "", "bin/just-import-git.py"]}
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "dirs":
[ [["./", "actions", "TESTS"], "actions"]
, [["./", "cli", "TESTS"], "cli"]
, [["./", "generated-binary", "TESTS"], "generated-binary"]
, [["./", "target-tests", "TESTS"], "targets"]
, [["./", "user-errors", "TESTS"], "user-errors"]
, [["./", "built-in-rules", "TESTS"], "built-in-rules"]
, [["./", "build-fails", "TESTS"], "build-fails"]
, [["./", "remote-execution", "TESTS"], "remote-execution"]
, [["./", "target-cache", "TESTS"], "target-cache"]
, [["./", "just-mr", "TESTS"], "just-mr"]
, [["./", "git-import", "TESTS"], "git-import"]
, [["./", "gc", "TESTS"], "gc"]
, [["./", "execution-service", "TESTS"], "execution-service"]
, [["./", "symlinks", "TESTS"], "symlinks"]
]
}
}
|