Skip to content

Commit

Permalink
validate: launcher: Print test number on result
Browse files Browse the repository at this point in the history
With parallel test execution, it will be hard to track which result
relates to which test. Therefore, the test number should be printed
along with the results as well.

Patch 3/4 to implement parallel test execution.

https://bugzilla.gnome.org/show_bug.cgi?id=743063
  • Loading branch information
Ramiro Polla authored and tsaunier committed Feb 5, 2015
1 parent a9a3664 commit 1f98176
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions validate/launcher/baseclasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,7 @@ def run_tests(self, starting_test_num, total_num_tests):
break

test = self.tests_wait()
self.print_test_num(test)
res = test.test_end()
self.reporter.after_test(test)
if res != Result.PASSED and (self.options.forever or
Expand Down

1 comment on commit 1f98176

@thiblahute
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

Please sign in to comment.