From 539be96ea4aa2677a48050e32bb98caf25c0af52 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 22 Oct 2014 01:26:06 +0000 Subject: [PATCH] [lit] Fix Python-3 compatibility, patch by Dan Liew. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220357 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/lit/TestRunner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/lit/lit/TestRunner.py b/utils/lit/lit/TestRunner.py index f280d3fd1db..1a2df20477b 100644 --- a/utils/lit/lit/TestRunner.py +++ b/utils/lit/lit/TestRunner.py @@ -344,8 +344,8 @@ def parseIntegratedTestScriptCommands(source_path): data = f.read() # Ensure the data ends with a newline. - if not data.endswith('\n'): - data = data + '\n' + if not data.endswith(to_bytes('\n')): + data = data + to_bytes('\n') # Iterate over the matches. line_number = 1 -- 2.50.1