]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
qa/cephfs: increase clones for test_for_6_ongoing_clones
authorRishabh Dave <ridave@redhat.com>
Tue, 29 Jul 2025 08:27:38 +0000 (13:57 +0530)
committerRishabh Dave <ridave@redhat.com>
Tue, 29 Jul 2025 08:39:19 +0000 (14:09 +0530)
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 <ridave@redhat.com>
qa/tasks/cephfs/volumes/test_clone_stats.py

index d66d1c87497865e084bf940f59351f794bd5db52..ce4c4709829492ddb56c1a1ca24e994dfca538df 100644 (file)
@@ -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)