From: Paul F. <pa...@so...> - 2025-01-25 20:24:21
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=a86f8168dc2545f9ceaa429d1df5afecb0f3a166 commit a86f8168dc2545f9ceaa429d1df5afecb0f3a166 Author: Paul Floyd <pj...@wa...> Date: Sat Jan 25 21:03:30 2025 +0100 regtest: slacken timing in none/tests/bug492678 again 5us was still a bit tight. 10us looks a lot more reliable. Diff: --- none/tests/bug492678.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/none/tests/bug492678.c b/none/tests/bug492678.c index c15037bcd5..8c3689fc3c 100644 --- a/none/tests/bug492678.c +++ b/none/tests/bug492678.c @@ -89,7 +89,7 @@ static void try_race_condition(void) ++tries; const struct timeval clk_period = { .tv_sec = 0, - .tv_usec = 5, + .tv_usec = 10, }; sigalrm_timer_setup(&clk_period); sigalrm_timer_destroy(); |