diff options
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index e30d549..63f7df4 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -788,6 +788,10 @@ def canRunLibcxxTests(): return True, "libc++ always present" if platform == "linux": + if not configuration.libcxx_include_dir or not configuration.libcxx_library_dir: + return False, "API tests require a locally built libc++." + + # Make sure -stdlib=libc++ works since that's how the tests will be built. with temp_file.OnDiskTempFile() as f: cmd = [configuration.compiler, "-xc++", "-stdlib=libc++", "-o", f.path, "-"] p = subprocess.Popen( |