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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
{ "equality":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["equality"]
, "test": ["action-equality.sh"]
, "keep": ["graph.json"]
, "deps": [["", "tool-under-test"]]
}
, "equality-timeout":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["equality-timeout"]
, "test": ["action-equality-timeout.sh"]
, "keep":
[ "rules/graph-null.json"
, "rules/graph-1.json"
, "rules/graph-2.json"
, "generic/graph-null.json"
, "generic/graph-1.json"
, "generic/graph-2.json"
]
, "deps": [["", "tool-under-test"]]
}
, "equality-properties":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["equality-properties"]
, "test": ["action-equality-properties.sh"]
, "keep":
[ "rules/graph-null.json"
, "rules/graph-empty.json"
, "rules/graph-set.json"
, "generic/graph-null.json"
, "generic/graph-empty.json"
, "generic/graph-set.json"
]
, "deps": [["", "tool-under-test"]]
}
, "trees":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["trees"]
, "test": ["nested-trees.sh"]
, "keep": ["blobs.json", "trees.json", "out/index.txt"]
, "deps": [["", "tool-under-test"]]
}
, "conflicts":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["conflicts"]
, "test": ["conflicts.sh"]
, "deps": [["", "tool-under-test"]]
}
, "incomplete-retry":
{ "type": ["end-to-end", "with remote"]
, "name": ["incompete-retry"]
, "test": ["incomplete-retry.sh"]
, "deps": [["", "tool-under-test"]]
}
, "error-reporting":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["error-reporting"]
, "test": ["error-reporting.sh"]
, "deps": [["", "tool-under-test"]]
}
, "identical-inputs (real)":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["identical-inputs"]
, "test": ["identical-inputs.sh"]
, "deps": [["", "tool-under-test"]]
}
, "identical-inputs":
{ "type": "configure"
, "tainted": ["test"]
, "target": "identical-inputs (real)"
, "arguments_config": ["TIMEOUT_SCALE"]
, "config":
{ "type": "singleton_map"
, "key": "TIMEOUT_SCALE"
, "value":
{ "type": "*"
, "$1": [3, {"type": "var", "name": "TIMEOUT_SCALE", "default": 1.0}]
}
}
}
, "cwd":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["cwd"]
, "test": ["cwd.sh"]
, "deps": [["", "tool-under-test"]]
}
, "request-action-input":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["request-action-input"]
, "test": ["request-action-input.sh"]
, "deps": [["", "tool-under-test"]]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "arguments_config": ["DROP_IO_HEAVY_TESTS"]
, "deps":
{ "type": "++"
, "$1":
[ [ "equality"
, "equality-timeout"
, "equality-properties"
, "trees"
, "conflicts"
, "incomplete-retry"
, "error-reporting"
, "cwd"
, "request-action-input"
]
, { "type": "if"
, "cond": {"type": "var", "name": "DROP_IO_HEAVY_TESTS"}
, "else": ["identical-inputs"]
}
]
}
}
}
|