We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f02aa84 commit 515dd63Copy full SHA for 515dd63
tests/logictest/logictest.py
@@ -308,6 +308,8 @@ def execute(self):
308
if callable(getattr(self, "batch_execute")):
309
# case batch
310
for (file_path, suite_name) in self.statement_files:
311
+ log.info(f"Suite: {file_path} started")
312
+
313
self.suite_now = suite_name
314
statement_list = list()
315
for state in get_statements(file_path, suite_name):
@@ -322,7 +324,7 @@ def execute(self):
322
324
e)
323
325
continue
326
- log.info(f"Suite file:{file_path} pass!")
327
+ log.info(f"Suite: {file_path} passed")
328
else:
329
raise RuntimeError(
330
f"batch_execute is not implement in runner {self.kind}")
0 commit comments