| 55 | #endif |
| 56 | |
| 57 | static bool diagnostics_capture_paths(diagnostics_paths_t *paths) { |
| 58 | return cbm_diag_test_copy_paths(paths->directory, sizeof(paths->directory), paths->snapshot, |
| 59 | sizeof(paths->snapshot), paths->trajectory, |
| 60 | sizeof(paths->trajectory)); |
| 61 | } |
| 62 | |
| 63 | static bool diagnostics_wait_for_file(const char *path, unsigned int timeout_ms) { |
| 64 | uint64_t deadline = cbm_now_ms() + timeout_ms; |
no test coverage detected