<div dir="ltr"><div dir="ltr">The 7.0 branch is not compatible with Python 3, at least not if you're not on Windows. The first release that is, would be 9.0, which is currently being qualified. This includes a bunch of compatibility fixes, and a newer version of the vendored pexpect (4.6). As you've noticed, using different versions of Python will not work either. <div><br></div><div>Your only option is to use Python 2.7, both for building LLDB and for running the test suite. Making sure the 2.7 interpreter is first in your PATH should be sufficient. Alternatively, you can explicitly pass -DPYTHON_EXECUTABLE=/path/to/python27.</div><div><br></div><div>Cheers,</div><div>Jonas</div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Jul 23, 2019 at 7:38 AM Romaric Jodin via lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi everyone,<div><br></div><div>I'm trying to run the test suite on lldb and I'm having some issues with Python. I'm on branch 7.0.</div><div><br></div><div>When I build lldb, I've got a folder "python3.5/site-packages" generated. So I believe that the build system found python3 in my environment.</div><div>But when I run the testsuite (using "ninja check-lldb"), I've got this issue:<br></div><div><br></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div>Traceback (most recent call last):</div><div>  File "/home/rjodin/work/dpu_tools/llvm/lldb/lldb/packages/Python/lldbsuite/test/decorators.py", line 113, in wrapper</div><div>    func(*args, **kwargs)</div><div>  File "/home/rjodin/work/dpu_tools/llvm/lldb/lldb/packages/Python/lldbsuite/test/decorators.py", line 341, in wrapper</div><div>    return func(self, *args, **kwargs)</div><div>  File "/home/rjodin/work/dpu_tools/llvm/lldb/lldb/packages/Python/lldbsuite/test/functionalities/command_regex/TestCommandRegex.py", line 39, in test_command_regex</div><div>    child.expect_exact(prompt)</div><div>  File "/home/rjodin/work/dpu_tools/llvm/lldb/lldb/third_party/Python/module/pexpect-2.4/pexpect.py", line 1386, in expect_exact</div><div>    if type(pattern_list) in types.StringTypes or pattern_list in (</div><div>AttributeError: module 'types' has no attribute 'StringTypes'</div><div><br></div></blockquote>It seems that it's because the code in "pexpect.py" is not compatible with python3.5.<div>If I force the system to use python2.7, I've got another issue because of the way "_lldb.so" is built (with python3.5):</div><div><br></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div>Traceback (most recent call last):</div><div>  File "/home/rjodin/work/dpu_tools/llvm/lldb/lldb/test/dotest.py", line 7, in <module></div><div>    lldbsuite.test.run_suite()</div><div>  File "/home/rjodin/work/dpu_tools/llvm/lldb/lldb/packages/Python/lldbsuite/test/dotest.py", line 1180, in run_suite</div><div>    import lldb</div><div>  File "/home/rjodin/package-sdk-2019.3.0/upmem-internal/usr/share/upmem/lib/python3.5/site-packages/lldb/__init__.py", line 39, in <module></div><div>    import _lldb</div><div>ImportError: dynamic module does not define init function (init_lldb)</div></blockquote><div><div><br></div><div>What do I do wrong?</div><div>Thanks,</div><div>-- <br></div><div dir="ltr" class="gmail-m_3606670781287180423gmail_signature"><div dir="ltr"><div style="color:rgb(136,136,136)"><span style="color:rgb(0,0,0);font-size:12.8px"><b>Romaric JODIN</b></span></div><div style="color:rgb(136,136,136)"><span style="color:rgb(0,0,0);font-size:12.8px">UPMEM</span></div><div style="color:rgb(136,136,136)"><font color="#000000" size="1"><i>Software Engineer</i></font></div><div style="color:rgb(136,136,136)"><br></div><div style="color:rgb(136,136,136)"><img src="cid:ii_jm7vnlj17_165ed4ff64757184" width="50" height="50"></div></div></div></div></div>
_______________________________________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br>
</blockquote></div>