| 278 | } |
| 279 | |
| 280 | static void tier_tool_set(cbm_graph_tier_t tier, const profile_tool_t **tools, size_t *count) { |
| 281 | if (tier == CBM_GRAPH_TIER_SCOUT) { |
| 282 | *tools = scout_tools; |
| 283 | *count = sizeof(scout_tools) / sizeof(scout_tools[0]); |
| 284 | } else { |
| 285 | *tools = verified_tools; |
| 286 | *count = sizeof(verified_tools) / sizeof(verified_tools[0]); |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | static const char *tier_server_profile(cbm_graph_tier_t tier) { |
| 291 | return tier == CBM_GRAPH_TIER_SCOUT ? "scout" : "analysis"; |
no outgoing calls
no test coverage detected