Add sections in Repeat_Load test

This commit is contained in:
baldurk
2025-02-27 15:31:00 +00:00
parent fe9a875fab
commit cd94206b0f
+3 -3
View File
@@ -50,10 +50,10 @@ class Repeat_Load(rdtest.TestCase):
dir_path = self.get_ref_path('', extra=True)
for file in os.scandir(dir_path):
rdtest.log.print('Repeat loading {}'.format(file.name))
section_name = f"Repeat loading {file.name}"
rdtest.log.begin_section(section_name)
self.repeat_load(file.path)
rdtest.log.success("Successfully repeat loaded {}".format(file.name))
rdtest.log.end_section(section_name)
rdtest.log.success("Repeat loaded all files")