Changeset View
Changeset View
Standalone View
Standalone View
packages/Python/lldbsuite/test/dotest.py
Show First 20 Lines • Show All 1,303 Lines • ▼ Show 20 Lines | def run_suite(): | ||||
target_platform = lldb.DBG.GetSelectedPlatform().GetTriple().split('-')[2] | target_platform = lldb.DBG.GetSelectedPlatform().GetTriple().split('-')[2] | ||||
checkLibcxxSupport() | checkLibcxxSupport() | ||||
checkLibstdcxxSupport() | checkLibstdcxxSupport() | ||||
checkDebugInfoSupport() | checkDebugInfoSupport() | ||||
# Don't do debugserver tests on anything except OS X. | # Don't do debugserver tests on anything except OS X. | ||||
configuration.dont_do_debugserver_test = "linux" in target_platform or "freebsd" in target_platform or "windows" in target_platform | configuration.dont_do_debugserver_test = "linux" in target_platform or "freebsd" in target_platform or "windows" in target_platform | ||||
# Don't do lldb-server (llgs) tests on anything except Linux. | # Don't do lldb-server (llgs) tests on anything except Linux and Windows. | ||||
clayborg: Update comment | |||||
configuration.dont_do_llgs_test = not ("linux" in target_platform) | configuration.dont_do_llgs_test = not ("linux" in target_platform) and not ("windows" in target_platform) | ||||
# Collect tests from the specified testing directories. If a test | # Collect tests from the specified testing directories. If a test | ||||
# subdirectory filter is explicitly specified, limit the search to that | # subdirectory filter is explicitly specified, limit the search to that | ||||
# subdirectory. | # subdirectory. | ||||
exclusive_test_subdir = configuration.get_absolute_path_to_exclusive_test_subdir() | exclusive_test_subdir = configuration.get_absolute_path_to_exclusive_test_subdir() | ||||
if exclusive_test_subdir: | if exclusive_test_subdir: | ||||
dirs_to_search = [exclusive_test_subdir] | dirs_to_search = [exclusive_test_subdir] | ||||
else: | else: | ||||
▲ Show 20 Lines • Show All 134 Lines • Show Last 20 Lines |
Update comment