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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{ "file_system_manager":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["file_system_manager"]
, "srcs": ["file_system_manager.test.cpp"]
, "data": ["test_data"]
, "deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["src/buildtool/file_system", "file_system_manager"]
]
, "stage": ["test", "buildtool", "file_system"]
}
, "git_tree":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["git_tree"]
, "srcs": ["git_tree.test.cpp"]
, "data": ["test_data"]
, "deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["test/utils", "container_matchers"]
, ["src/buildtool/file_system", "git_tree"]
]
, "stage": ["test", "buildtool", "file_system"]
}
, "file_root":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["file_root"]
, "srcs": ["file_root.test.cpp"]
, "data": ["test_data"]
, "deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["test/utils", "container_matchers"]
, ["src/buildtool/common", "artifact_description"]
, ["src/buildtool/file_system", "file_root"]
]
, "stage": ["test", "buildtool", "file_system"]
}
, "directory_entries":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["directory_entries"]
, "srcs": ["directory_entries.test.cpp"]
, "data": ["test_data"]
, "deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["test/utils", "container_matchers"]
, ["src/buildtool/common", "artifact_description"]
, ["src/buildtool/file_system", "file_root"]
]
, "stage": ["test", "buildtool", "file_system"]
}
, "test_data":
{ "type": ["@", "rules", "data", "staged"]
, "srcs":
[ "data/empty_executable"
, "data/example_file"
, "data/test_repo.bundle"
, "data/subdir/nested_file"
]
, "stage": ["test", "buildtool", "file_system"]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "deps":
["file_root", "file_system_manager", "git_tree", "directory_entries"]
}
}
|