run_test_suite_lib/
trace.rs1#[cfg(not(target_os = "fuchsia"))]
6use std::ffi::CStr;
7
8#[cfg(target_os = "fuchsia")]
9macro_rules! duration {
10 ($name:expr) => {
11 ::fuchsia_trace::duration!(c"run_test_suite", $name);
12 };
13}
14
15#[cfg(not(target_os = "fuchsia"))]
17macro_rules! duration {
18 ($name:literal) => {
19 let _scope = crate::trace::DurationScope::new($name);
20 };
21}
22
23#[cfg(not(target_os = "fuchsia"))]
24pub(crate) struct DurationScope {
25 start: std::time::Instant,
26 name: &'static CStr,
27}
28
29#[cfg(not(target_os = "fuchsia"))]
30impl DurationScope {
31 pub(crate) fn new(name: &'static CStr) -> Self {
32 Self { name, start: std::time::Instant::now() }
33 }
34}
35
36#[cfg(not(target_os = "fuchsia"))]
37impl std::ops::Drop for DurationScope {
38 fn drop(&mut self) {
39 log::trace!(
40 name = self.name.to_string_lossy().to_string().as_str(),
41 duration = self.start.elapsed().as_nanos() as u64;
42 "DURATION_NANOS"
43 );
44 }
45}
46
47pub(crate) use duration;