Home
last modified time | relevance | path

Searched refs:duration_sec (Results 1 – 3 of 3) sorted by relevance

/linux/tools/testing/selftests/proc/
H A Dproc-maps-race.c90 unsigned long duration_sec; in FIXTURE() local
574 unsigned long duration_sec; in FIXTURE_SETUP() local
580 duration_sec = duration ? atol(duration) : 0; in FIXTURE_SETUP()
581 self->duration_sec = duration_sec ? duration_sec : 5UL; in FIXTURE_SETUP()
805 } while (end_ts.tv_sec - start_ts.tv_sec < self->duration_sec); in TEST_F()
886 } while (end_ts.tv_sec - start_ts.tv_sec < self->duration_sec); in TEST_F()
969 } while (end_ts.tv_sec - start_ts.tv_sec < self->duration_sec); in TEST_F()
/linux/tools/testing/selftests/bpf/
H A Dbench.c18 .duration_sec = 5,
325 env.duration_sec = strtol(arg, NULL, 10); in parse_arg()
326 if (env.duration_sec <= 0) { in parse_arg()
703 state.results = calloc(env.duration_sec + env.warmup_sec + 2, in setup_benchmark()
776 if (iter == env.duration_sec + env.warmup_sec) in collect_measurements()
H A Dbench.h23 int duration_sec; member