aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/lldbtest.py
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2019-08-23 22:28:46 +0000
committerVedant Kumar <vsk@apple.com>2019-08-23 22:28:46 +0000
commit77017ad306f7c5ecbda6a9ce68356fecff0e66fc (patch)
treef7a7d90de28a7075e422f0ae2a19037de0ad87fe /lldb/packages/Python/lldbsuite/test/lldbtest.py
parent665a64265e7eec886fd37e65f2e821d08443d634 (diff)
downloadllvm-77017ad306f7c5ecbda6a9ce68356fecff0e66fc.zip
llvm-77017ad306f7c5ecbda6a9ce68356fecff0e66fc.tar.gz
llvm-77017ad306f7c5ecbda6a9ce68356fecff0e66fc.tar.bz2
Skip tail call frame tests when dwarf_version < 4
rdar://problem/54656572 llvm-svn: 369821
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lldbtest.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index ac69bd5..69cfff1 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1299,6 +1299,7 @@ class Base(unittest2.TestCase):
driver_output = check_output(
[self.getCompiler()] + '-g -c -x c - -o - -###'.split(),
stderr=STDOUT)
+ driver_output = driver_output.decode("utf-8")
for line in driver_output.split(os.linesep):
m = re.search('dwarf-version=([0-9])', line)
if m: