Browse Source

master We needed more logging

We had a couple of preview runs fail with no explanation. We need
to know which test is dying or killing the preview runs.
Mike Smith 11 years ago
parent
commit
b1dcf4609c
1 changed files with 5 additions and 0 deletions
  1. 5 0
      toolset/benchmark/benchmarker.py

+ 5 - 0
toolset/benchmark/benchmarker.py

@@ -422,6 +422,11 @@ class Benchmarker:
       # These features do not work on Windows
       for test in tests:
         if __name__ == 'benchmark.benchmarker':
+          print textwrap.dedent("""
+            -----------------------------------------------------
+              Running Test: {name} ...
+            -----------------------------------------------------
+            """.format(name=test.name))
           test_process = Process(target=self.__run_test, args=(test,))
           test_process.start()
           test_process.join(self.run_test_timeout_seconds)