blob: ddc19c495f1dfc27bba46181b16a7c2d134f35e7 [file] [log] [blame]
Patrick Williams93c203f2021-10-06 16:15:23 -05001From d01a57a998798da977c470f3b8d6a457c1adb144 Mon Sep 17 00:00:00 2001
2From: Azat Khuzhin <azat@libevent.org>
3Date: Sun, 19 Sep 2021 00:57:31 +0300
4Subject: [PATCH] test: mark util/monotonic_prc_fallback as retriable
5
6Refs: #1193
7
Andrew Geisslereff27472021-10-29 15:35:00 -05008Upstream-Status: Backport
Patrick Williams93c203f2021-10-06 16:15:23 -05009---
10 test/regress_util.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/test/regress_util.c b/test/regress_util.c
14index 45caa2700a40..a9e80db20149 100644
15--- a/test/regress_util.c
16+++ b/test/regress_util.c
17@@ -1672,7 +1672,7 @@ struct testcase_t util_testcases[] = {
18 { "monotonic_res_fallback", test_evutil_monotonic_res, TT_OFF_BY_DEFAULT, &basic_setup, (void*)"fallback" },
19 { "monotonic_prc", test_evutil_monotonic_prc, 0, &basic_setup, (void*)"" },
20 { "monotonic_prc_precise", test_evutil_monotonic_prc, TT_RETRIABLE, &basic_setup, (void*)"precise" },
21- { "monotonic_prc_fallback", test_evutil_monotonic_prc, 0, &basic_setup, (void*)"fallback" },
22+ { "monotonic_prc_fallback", test_evutil_monotonic_prc, TT_RETRIABLE, &basic_setup, (void*)"fallback" },
23 { "date_rfc1123", test_evutil_date_rfc1123, 0, NULL, NULL },
24 { "evutil_v4addr_is_local", test_evutil_v4addr_is_local, 0, NULL, NULL },
25 { "evutil_v6addr_is_local", test_evutil_v6addr_is_local, 0, NULL, NULL },
26--
272.31.1
28