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>
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)