From 73b78bb2175f2ba50bede5ed9a1e4b598c76ae53 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Mon, 7 Jul 2025 10:30:57 +0200 Subject: [PATCH] tests/lib/timespec_util: Skip two tests by now These two (sub)tests assume the system tick period divides evenly all time interval values being tested, but this is not the case in general, and when it is not, these tests fail. Let's skip these 2 tests by now so we can release without a broken CI, and do not block other development while the tests themselves are being fixed. Signed-off-by: Alberto Escolar Piedras --- tests/lib/timespec_util/src/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/lib/timespec_util/src/main.c b/tests/lib/timespec_util/src/main.c index f538a41e7256c..b85727d226770 100644 --- a/tests/lib/timespec_util/src/main.c +++ b/tests/lib/timespec_util/src/main.c @@ -308,6 +308,8 @@ static const struct tospec { ZTEST(timeutil_api, test_timespec_from_timeout) { + ztest_test_skip(); /* Provisionally disabled until #92158 is fixed */ + ARRAY_FOR_EACH(tospecs, i) { const struct tospec *const tspec = &tospecs[i]; struct timespec actual; @@ -327,6 +329,8 @@ ZTEST(timeutil_api, test_timespec_from_timeout) ZTEST(timeutil_api, test_timespec_to_timeout) { + ztest_test_skip(); /* Provisionally disabled until #92158 is fixed */ + ARRAY_FOR_EACH(tospecs, i) { const struct tospec *const tspec = &tospecs[i]; k_timeout_t actual;