mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-10 16:46:07 +00:00

This follows the spirit of a previous patch which did essentially the same thing. In Python 3, when you use Popen.communicate(), you get back a bytes object which cannot normally be treated as a string. We could decode this manually, but universal_newlines=True does this automatically, and there's no disadvantage to doing so even on Python 2. So just enable it always. llvm-svn: 252126
This directory contains source and tests for the lldb test runner architecture. This directory is not for lldb python tests. It is the test runner. The tests under this diretory are test-runner tests (i.e. tests that verify the test runner itself runs properly).