diff options
author | Jordan Rupprecht <rupprecht@google.com> | 2019-12-11 14:02:22 -0800 |
---|---|---|
committer | Jordan Rupprecht <rupprecht@google.com> | 2019-12-11 14:06:14 -0800 |
commit | 786b6db8e6fd87fb82f2ad3e94e20c5c9cf9c4e4 (patch) | |
tree | 7442b13b3bb1bee0f27017b2c968a542798fcfc8 /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | e0e07a7e414e818788144511de0c6328285c43cd (diff) | |
download | bcm5719-llvm-786b6db8e6fd87fb82f2ad3e94e20c5c9cf9c4e4.tar.gz bcm5719-llvm-786b6db8e6fd87fb82f2ad3e94e20c5c9cf9c4e4.zip |
[lldb][dotest] Add `#include <algorithm>` to libc++ detection
Summary: Speculative fix after 34ef51b5f979 broke the lldb buildbot on libc++ tests.
Reviewers: echristo, EricWF
Subscribers: ldionne, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D71376
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index fa2b3cb15a9..1e3df7373f0 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -856,7 +856,7 @@ def canRunLibcxxTests(): with tempfile.NamedTemporaryFile() as f: cmd = [configuration.compiler, "-xc++", "-stdlib=libc++", "-o", f.name, "-"] p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) - _, stderr = p.communicate("int main() {}") + _, stderr = p.communicate("#include <algorithm>\nint main() {}") if not p.returncode: return True, "Compiling with -stdlib=libc++ works" return False, "Compiling with -stdlib=libc++ fails with the error: %s" % stderr |