test events: add test_filename to all test-related events.

The test_filename is the full path to the TestCase class's
implementation file.

llvm-svn: 248060
This commit is contained in:
Todd Fiala 2015-09-18 22:57:04 +00:00
parent e83f140833
commit f77f8ae450
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ class EventBuilder(object):
event.update({
"test_class": test_class_name,
"test_name": test_name,
"test_filename": inspect.getfile(test.__class__)
})
return event