From: Rishabh Dave Date: Tue, 29 Jul 2025 08:27:38 +0000 (+0530) Subject: qa/cephfs: increase clones for test_for_6_ongoing_clones X-Git-Tag: testing/wip-vshankar-testing-20250805.100115-debug~4^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=d24da381a4c44600e536b1c584a40dcc4bf00c6e;p=ceph-ci.git qa/cephfs: increase clones for test_for_6_ongoing_clones test_for_6_ongoing_clones fails some times in testing with teuthology since clones finish sooner than expected causing progress bar message to have less than 6 clones. Increasing number of clones launched will improve the possibility of getting the expected progress bar message. Fixes: https://tracker.ceph.com/issues/71434 Signed-off-by: Rishabh Dave --- diff --git a/qa/tasks/cephfs/volumes/test_clone_stats.py b/qa/tasks/cephfs/volumes/test_clone_stats.py index d66d1c87497..ce4c4709829 100644 --- a/qa/tasks/cephfs/volumes/test_clone_stats.py +++ b/qa/tasks/cephfs/volumes/test_clone_stats.py @@ -860,5 +860,10 @@ class TestOngoingClonesCounter(CloneProgressReporterHelper): def test_for_4_ongoing_clones(self): self._run_test(MAX_THREADS=4, NUM_OF_CLONES=8) + # NOTE: once in many runs with teuthology clones finish much faster than + # expected. causing the message on the clone progress bars to have less + # than 6 clones leading to failure. if this happens too often perhaps Sepia + # lab machines are too fast and deleting this test should be considered + # since other tests in this class also test this feature. def test_for_6_ongoing_clones(self): - self._run_test(MAX_THREADS=6, NUM_OF_CLONES=16) + self._run_test(MAX_THREADS=6, NUM_OF_CLONES=24)