Skip to content

Commit

Permalink
[LIT] Remove string decoding in gtest discovery code. lit.util.captur…
Browse files Browse the repository at this point in the history
…e now does decoding.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225693 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
EricWF committed Jan 12, 2015
1 parent cd5bbd8 commit 1af0121
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion utils/lit/lit/formats/googletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def getGTestTests(self, path, litConfig, localConfig):
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')
Expand Down

0 comments on commit 1af0121

Please sign in to comment.