From a7778fc333770fee49fef522532fb0f0f2b70e3f Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 13 Apr 2025 20:34:44 +0300 Subject: [PATCH] test-store: don't break on slow systems The 'circular-symlink' test. --- lib/tests/test-mu-store.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/tests/test-mu-store.cc b/lib/tests/test-mu-store.cc index 197375df..ebc948e6 100644 --- a/lib/tests/test-mu-store.cc +++ b/lib/tests/test-mu-store.cc @@ -515,7 +515,8 @@ test_store_circular_symlink(void) size_t n{}; while (store.indexer().is_running()) { std::this_thread::sleep_for(100ms); - g_assert_cmpuint(n++,<=,27); // 25 should be enough but #2832... + // 5 sec should be enough, even on the slowest supported systems.. + g_assert_cmpuint(n++,<=,50); } // there will be a lot of dups.... g_assert_false(store.empty());