From 1af01214b5298192d0cab83cbe90e435045ede8e Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Mon, 12 Jan 2015 20:43:34 +0000 Subject: [PATCH] [LIT] Remove string decoding in gtest discovery code. lit.util.capture now does decoding. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225693 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/lit/formats/googletest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/lit/lit/formats/googletest.py b/utils/lit/lit/formats/googletest.py index 1b5b7856456..59ac3c5cb37 100644 --- a/utils/lit/lit/formats/googletest.py +++ b/utils/lit/lit/formats/googletest.py @@ -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')