[compiler-rt] r288490 - compiler-rt/test/profile/Linux/lit.local.cfg: [Py3] Use text mode (universal_newlines=True).

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 2 00:17:17 PST 2016


Author: chapuni
Date: Fri Dec  2 02:17:17 2016
New Revision: 288490

URL: http://llvm.org/viewvc/llvm-project?rev=288490&view=rev
Log:
compiler-rt/test/profile/Linux/lit.local.cfg: [Py3] Use text mode (universal_newlines=True).

Modified:
    compiler-rt/trunk/test/profile/Linux/lit.local.cfg

Modified: compiler-rt/trunk/test/profile/Linux/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/Linux/lit.local.cfg?rev=288490&r1=288489&r2=288490&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/Linux/lit.local.cfg (original)
+++ compiler-rt/trunk/test/profile/Linux/lit.local.cfg Fri Dec  2 02:17:17 2016
@@ -21,6 +21,7 @@ def is_gold_linker_available():
     return False
 
   clang_cmd = subprocess.Popen([config.clang, '-fuse-ld=gold', '-xc', '-'],
+                               universal_newlines = True,
                                stdin = subprocess.PIPE,
                                stdout = subprocess.PIPE,
                                stderr = subprocess.PIPE)




More information about the llvm-commits mailing list