| 60 | } bootstrap_thread_call_t; |
| 61 | |
| 62 | static cbm_daemon_build_identity_t bootstrap_identity(const char *version, const char *build) { |
| 63 | cbm_daemon_build_identity_t identity = { |
| 64 | .semantic_version = version, |
| 65 | .build_fingerprint = build, |
| 66 | .cache_fingerprint = "cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc", |
| 67 | .protocol_abi = 3, |
| 68 | .store_abi = 11, |
| 69 | .feature_abi = 7, |
| 70 | }; |
| 71 | return identity; |
| 72 | } |
| 73 | |
| 74 | static bool bootstrap_endpoint_fixture_start(bootstrap_endpoint_fixture_t *fixture, |
| 75 | const char *tag) { |
no outgoing calls
no test coverage detected