[LIT] Remove string decoding in gtest discovery code. lit.util.capture now does decoding.

llvm-svn: 225693
This commit is contained in:
Eric Fiselier 2015-01-12 20:43:34 +00:00
parent 75e259ed95
commit ffbadedcf9
1 changed files with 0 additions and 1 deletions

View File

@ -31,7 +31,6 @@ class GoogleTest(TestFormat):
try:
lines = lit.util.capture([path, '--gtest_list_tests'],
env=localConfig.environment)
lines = lines.decode('utf-8')
if kIsWindows:
lines = lines.replace('\r', '')
lines = lines.split('\n')