diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2025-11-21 11:43:58 +0200 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2025-11-21 12:58:04 +0200 |
| commit | fb806392c35d7a63258c91badef56de55b0daafe (patch) | |
| tree | ba6c1dd13c10bb964f29f74c589ef0d39f408945 | |
| parent | 08c0e6abdb1f61e224b9e61882266568ec954b2a (diff) | |
test-mu-store: bump timeout in test
Seems some systems are quite slow, so bump the time-out.
Fixes #2886.
| -rw-r--r-- | lib/tests/test-mu-store.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/tests/test-mu-store.cc b/lib/tests/test-mu-store.cc index b1573e7..6e3ac7f 100644 --- a/lib/tests/test-mu-store.cc +++ b/lib/tests/test-mu-store.cc @@ -571,8 +571,9 @@ test_store_circular_symlink() while (store.indexer().is_running()) { std::this_thread::sleep_for(100ms); - // 5 sec should be enough, even on the slowest supported systems.. - g_assert_cmpuint(n++,<=,50); + // 20 sec should be enough, even on the slowest supported systems.. + // ie., #2886 Well, let's see... + g_assert_cmpuint(n++,<=,200); } // there will be a lot of dups.... g_assert_false(store.empty()); |
