diff options
author | Alex Langford <apl@fb.com> | 2019-07-23 00:28:26 +0000 |
---|---|---|
committer | Alex Langford <apl@fb.com> | 2019-07-23 00:28:26 +0000 |
commit | e5001fe5c1ac00ced55168758ddccaa434175037 (patch) | |
tree | 7984e11f8d065b79820564d5a22656a964155c14 /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | 6058b86373991b78aa20e691cac7456af976ef88 (diff) | |
download | llvm-e5001fe5c1ac00ced55168758ddccaa434175037.zip llvm-e5001fe5c1ac00ced55168758ddccaa434175037.tar.gz llvm-e5001fe5c1ac00ced55168758ddccaa434175037.tar.bz2 |
[lldb][test_suite] skip tests of `libstdcpp` on Android and clean up
Summary: Delete the android target from `libstdcpp` test category, since android no longer support libstdcxx
Reviewers: xiaobai, labath
Reviewed By: labath
Subscribers: srhines, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D64771
llvm-svn: 366770
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index dab3192d..a6d38fa 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -1154,8 +1154,10 @@ def canRunLibstdcxxTests(): from lldbsuite.test import lldbplatformutil platform = lldbplatformutil.getPlatform() + if lldbplatformutil.target_is_android(): + platform = "android" if platform == "linux": - return True, "libstdcxx always present" + return True, "libstdcxx always present" return False, "Don't know how to build with libstdcxx on %s" % platform def checkLibstdcxxSupport(): |