lit: Separate test suite from test name with spaces, to make it easier to cut and paste.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94134 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2010-01-22 02:04:28 +00:00
parent 46dc583ad5
commit eab04fc0be

View File

@ -70,7 +70,7 @@ class Test:
self.elapsed = elapsed
def getFullName(self):
return self.suite.config.name + '::' + '/'.join(self.path_in_suite)
return self.suite.config.name + ' :: ' + '/'.join(self.path_in_suite)
def getSourcePath(self):
return self.suite.getSourcePath(self.path_in_suite)