Skip to content
This repository has been archived by the owner on Feb 1, 2020. It is now read-only.

Commit

Permalink
Update ds2 to use llvm-7 for testing and cmake toolchain files
Browse files Browse the repository at this point in the history
  • Loading branch information
lanza committed Oct 25, 2018
1 parent 04d1216 commit 3605c55
Show file tree
Hide file tree
Showing 16 changed files with 249 additions and 52 deletions.
6 changes: 2 additions & 4 deletions .circleci/config.yml
Expand Up @@ -11,7 +11,7 @@

docker_config: &docker_config
docker:
- image: sas42/ds2-build-env:2018-09-06_18-42-00
- image: sas42/ds2-build-env:2018-09-12_17-18-00

configure_step: &configure_step
run:
Expand Down Expand Up @@ -71,12 +71,10 @@ jobs:
- checkout
- run:
name: Apply clang-format
command: find Sources Headers -type f -exec clang-format-6.0 -i -style=file {} \;
command: find Sources Headers -type f -exec clang-format -i -style=file {} \;
- *check_dirty_step
Registers:
<<: *docker_config
environment:
CLANG_FORMAT: clang-format-6.0
steps:
- checkout
- run:
Expand Down
4 changes: 2 additions & 2 deletions Support/CMake/Toolchain-Linux-X86-Clang.cmake
Expand Up @@ -11,7 +11,7 @@
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR X86)

set(CMAKE_C_COMPILER clang-6.0)
set(CMAKE_CXX_COMPILER clang++-6.0)
set(CMAKE_C_COMPILER clang)
set(CMAKE_CXX_COMPILER clang++)
set(CMAKE_C_COMPILER_ARG1 -m32)
set(CMAKE_CXX_COMPILER_ARG1 -m32)
4 changes: 2 additions & 2 deletions Support/CMake/Toolchain-Linux-X86_64-Clang.cmake
Expand Up @@ -11,5 +11,5 @@
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR X86_64)

set(CMAKE_C_COMPILER clang-6.0)
set(CMAKE_CXX_COMPILER clang++-6.0)
set(CMAKE_C_COMPILER clang)
set(CMAKE_CXX_COMPILER clang++)
19 changes: 12 additions & 7 deletions Support/Scripts/run-lldb-tests.sh
Expand Up @@ -44,7 +44,7 @@ get_android_compiler() {
}

REPO_BASE="https://github.com/llvm-mirror"
UPSTREAM_BRANCH="release_60"
UPSTREAM_BRANCH="release_70"

top="$(git rev-parse --show-toplevel)"
build_dir="$PWD"
Expand Down Expand Up @@ -133,7 +133,7 @@ if [[ "$(linux_distribution)" == "centos" ]] || $opt_build_lldb; then
fi
elif [ "$(linux_distribution)" == "ubuntu" ]; then
lldb_path="$build_dir/lldb"
lldb_exe="$(get_program_path lldb-6.0)"
lldb_exe="$(get_program_path lldb)"


python_base="$build_dir/lib"
Expand All @@ -147,8 +147,8 @@ elif [ "$(linux_distribution)" == "ubuntu" ]; then

# Sync lldb libs to local build dir
rsync -a /usr/lib/x86_64-linux-gnu/ "$python_base"
rsync -a /usr/lib/llvm-6.0/lib/python2.7/ "$python_base/python2.7"
rsync -a "$python_base/liblldb-6.0.so" "$python_base/liblldb.so"
rsync -a /usr/lib/llvm-7/lib/python2.7/ "$python_base/python2.7"
rsync -a "$python_base/liblldb-7.so" "$python_base/liblldb.so"

# Fix broken python lldb symlinks
cd "$PYTHONPATH/lldb"
Expand Down Expand Up @@ -186,8 +186,11 @@ fi
if [ -n "${TARGET-}" ]; then
if [[ "${TARGET}" == "Linux-X86_64" || "${TARGET}" == "Linux-X86_64-Clang" ]]; then
args+=("--arch=x86_64")
if [[ "${PLATFORM-}" = "1" ]]; then
args+=("--excluded" "$blacklist_dir/ds2/llvm_60.blacklist")
if ! $opt_no_ds2_blacklists; then
args+=("--excluded" "$blacklist_dir/ds2/x86_64.blacklist")
if [[ "${PLATFORM-}" = "1" ]]; then
args+=("--excluded" "$blacklist_dir/ds2/x86_64-platform.blacklist")
fi
fi
elif [[ "${TARGET}" == "Linux-X86" || "${TARGET}" == "Linux-X86-Clang" || "${TARGET}" == "Android-X86" ]]; then
args+=("--arch=i386")
Expand All @@ -198,10 +201,12 @@ if [ -n "${TARGET-}" ]; then
args+=("--excluded" "$blacklist_dir/ds2/x86.blacklist")
fi
if [[ "${PLATFORM-}" = "1" ]]; then
args+=("--excluded" "$blacklist_dir/ds2/llvm_60.blacklist")
if ! $opt_no_upstream_blacklists; then
args+=("--excluded" "$blacklist_dir/upstream/x86-platform.blacklist")
fi
if ! $opt_no_ds2_blacklists; then
args+=("--excluded" "$blacklist_dir/ds2/x86-platform.blacklist")
fi
fi
elif [[ "${TARGET}" == "Android-ARM" ]]; then
args+=("--arch=arm")
Expand Down
5 changes: 5 additions & 0 deletions Support/Testing/Blacklists/ds2/android-arm64.blacklist
Expand Up @@ -13,3 +13,8 @@ TestSaveJITObjects.SaveJITObjectsTestCase.test_save_jit_objects_dwarf
TestCStrings.CStringsTestCase.test_with_run_command_dwarf
TestCppGlobalOperators.TestCppGlobalOperators.test_equals_operator_dwarf
TestCppGlobalOperators.TestCppGlobalOperators.test_operator_new_dwarf

xfail
TestIRInterpreter.IRInterpreterTestCase.test_ir_interpreter
TestBreakpointInGlobalConstructor.TestBreakpointInGlobalConstructors.test
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_int_type_dwarf
68 changes: 68 additions & 0 deletions Support/Testing/Blacklists/ds2/android.blacklist
Expand Up @@ -2,6 +2,17 @@ skip
CreateAfterAttachTestCase.test_create_after_attach_with_popen
CreateDuringStepTestCase.test_step_inst_with
TestStopHook
TestCrashDuringStep.CrashDuringStepTestCase.test_step_inst_with_dwarf
lldbsuite.test.lldbtest.TestGModules.test_dwarf
lldbsuite.test.lldbtest.TestSymbols.test_dwarf
lldbsuite.test.lldbtest.TestLLVMStyle.test_dwarf
lldbsuite.test.lldbtest.TestVirtualOverload.test_dwarf
lldbsuite.test.lldbtest.TestNamespaceConflicts.test_dwarf
lldbsuite.test.lldbtest.TestStats.test_dwarf
lldbsuite.test.lldbtest.TestDataFormatterInvalidStdUniquePtr.test
lldbsuite.test.lldbtest.TestSampleInlineTest.test_dwarf
lldbsuite.test.lldbtest.TestScalarURem.test_dwarf
TestThreadAPI.ThreadAPITestCase.test_step_out_of_malloc_into_function_b_dwarf

xfail
TestDataFormatterStdString.StdStringDataFormatterTestCase.test_with_run_command
Expand All @@ -21,3 +32,60 @@ TestConcurrentCrashWithSignal.ConcurrentCrashWithSignal
TestConcurrentDelaySignalBreak.ConcurrentDelaySignalBreak
TestConcurrentDelayedCrashWithBreakpointSignal.ConcurrentDelayedCrashWithBreakpointSignal
TestConcurrentCrashWithBreak.ConcurrentCrashWithBreak
TestSymbolContextTwoFiles.SymbolContextTwoFilesTestCase.test_ranges_in_multiple_compile_unit_dwarf
TestValueVarUpdate.HelloWorldTestCase.test_with_process_launch_api_dwarf
TestCppValueCast.CppValueCastTestCase.test_value_cast_with_regular_inheritance_dwarf
TestWatchpointSetErrorCases.WatchpointSetErrorTestCase.test_error_cases_with_watchpoint_set_dwarf
TestRecursiveInferior.CrashingRecursiveInferiorTestCase.test_recursive_inferior_crashing_step_dwarf
TestRecursiveInferior.CrashingRecursiveInferiorTestCase.test_recursive_inferior_crashing_register_dwarf
TestRecursiveInferior.CrashingRecursiveInferiorTestCase.test_recursive_inferior_crashing_python_dwarf
TestRecursiveInferior.CrashingRecursiveInferiorTestCase.test_recursive_inferior_crashing_expr_dwarf
TestRecursiveInferior.CrashingRecursiveInferiorTestCase.test_recursive_inferior_crashing_dwarf
TestDataFormatterSkipSummary.SkipSummaryDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxBitset.TestDataFormatterLibcxxBitset.test_value_dwarf
TestDataFormatterLibcxxBitset.TestDataFormatterLibcxxBitset.test_ptr_and_ref_dwarf
TestDataFormatterLibcxxMultiSet.LibcxxMultiSetDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxMultiSet.LibcxxMultiSetDataFormatterTestCase.test_ref_and_ptr_dwarf
TestDataFormatterLibccMultiMap.LibcxxMultiMapDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxQueue.TestDataFormatterLibcxxQueue.test_dwarf
TestDataFormatterLibcxxVBool.LibcxxVBoolDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxVector.LibcxxVectorDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxVector.LibcxxVectorDataFormatterTestCase.test_ref_and_ptr_dwarf
TestDataFormatterLibcxxString.LibcxxStringDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxTuple.TestDataFormatterLibcxxTuple.test_dwarf
TestDataFormatterLibccIterator.LibcxxIteratorDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxSet.LibcxxSetDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxSet.LibcxxSetDataFormatterTestCase.test_ref_and_ptr_dwarf
TestBreakpointConditions.BreakpointConditionsTestCase.test_breakpoint_condition_and_run_command_dwarf
TestBreakpointConditions.BreakpointConditionsTestCase.test_breakpoint_condition_inline_and_run_command_dwarf
TestBreakpointIgnoreCount.BreakpointIgnoreCountTestCase.test_with_run_command_dwarf
TestDataFormatterVarScriptFormatting.PythonSynthDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterDisabling.DataFormatterDisablingTestCase.test_with_run_command_dwarf
TestDataFormatterRefPtrRecursion.DataFormatterRefPtrRecursionTestCase.test_with_run_command_dwarf
TestFrameFormatSmallStruct.FrameFormatSmallStructTestCase.test_with_run_command_dwarf
TestDataFormatterAdv.AdvDataFormatterTestCase.test_with_run_command_dwarf
TestTypeSummaryListScript.TypeSummaryListScriptTestCase.test_typesummarylist_script_dwarf
TestPtrToArrayFormatting.PtrToArrayDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterPythonSynth.PythonSynthDataFormatterTestCase.test_rdar10960550_with_run_command_dwarf
TestDataFormatterPythonSynth.PythonSynthDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterNamedSummaries.NamedSummariesDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLanguageCategoryUpdates.LanguageCategoryUpdatesTestCase.test_with_run_command_dwarf
TestDataFormatterSmartArray.SmartArrayDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterEnumFormat.EnumFormatTestCase.test_with_run_command_dwarf
TestDataFormatterCategories.CategoriesDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterSynth.SynthDataFormatterTestCase.test_with_run_command_dwarf
TestVarInAggregateMisuse.VarInAggregateMisuseTestCase.test_with_run_command_dwarf
TestDataFormatterScript.ScriptDataFormatterTestCase.test_with_run_command_dwarf
TestUserFormatVsSummary.UserFormatVSSummaryTestCase.test_with_run_command_dwarf
TestDataFormatterStdMap.StdMapDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterStdIterator.StdIteratorDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterStdList.StdListDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterStdTuple.StdTupleDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterStdSmartPtr.StdSmartPtrDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterStdVector.StdVectorDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterStdUniquePtr.StdUniquePtrDataFormatterTestCase.test_recursive_unique_ptr_dwarf
TestDataFormatterStdUniquePtr.StdUniquePtrDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterStdVBool.StdVBoolDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibccMap.LibcxxMapDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterUnordered.LibcxxUnorderedDataFormatterTestCase.test_with_run_command_dwarf
TestDataFormatterLibcxxForwardList.TestDataFormatterLibcxxForwardList.test_dwarf
18 changes: 15 additions & 3 deletions Support/Testing/Blacklists/ds2/general.blacklist
Expand Up @@ -6,28 +6,40 @@ LldbGdbServerTestCase.test_Hg_switches_to_3_threads_attach_llgs
LldbGdbServerTestCase.test_Hg_switches_to_3_threads_launch_llgs
SendSignalTestCase.test_with_run_command
TestAttachResume.AttachResumeTestCase.test_attach_continue_interrupt_detach
TestConcurrent
TestDataFormatterSynthType.DataFormatterSynthTypeTestCase.test_with_run_command
TestInferiorAssert
TestConcurrent
TestLldbGdbServer.LldbGdbServerTestCase.test_attach_commandline_continue_app_exits_llgs

skip
test_lldbmi
TestBreakpointConditions.BreakpointConditionsTestCase.test_breakpoint_condition_and_python_api_dwarf
TestCallWithTimeout.ExprCommandWithTimeoutsTestCase
TestCreateAfterAttach
TestDuplicateMembers.BSDArchivesTestCase.test_dwarf
TestDynamicValueChildCount.DynamicValueChildCountTestCase.test_get_dynamic_vals_dwarf
TestFormatters.ExprFormattersTestCase.test_dwarf
TestGdbRemoteAuxvSupport.TestGdbRemoteAuxvSupport
TestGdbRemoteModuleInfo
TestGdbRemoteThreadsInStopReply.TestGdbRemoteThreadsInStopReply.test_stop_reply_contains_thread_pcs_llgs
TestGuessLanguage.TestFrameGuessLanguage.test_guess_language
TestLldbGdbServer.LldbGdbServerTestCase.test_Hc_then_Csignal_signals_correct_thread_launch_llgs
TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_returns_known_stub_features_llgs
TestLoadUsingPaths.LoadUsingPathsTestCase.test_load_using_paths
TestMachCore.MachCoreTestCase.test_selected_thread
TestMultilineExpressions.MultilineExpressionsTestCase.test_empty_list
TestNoReturnModuleEnd.TestNoreturnModuleEnd.test
TestProcessLaunch.ProcessLaunchTestCase.test_set_working_dir_existing
TestRaise.RaiseTestCase.test_sigtrap
TestSettings.SettingsCommandTestCase.test_pass_host_env_vars
TestSettings.SettingsCommandTestCase.test_run_args_and_env_vars
TestSourceManager.SourceManagerTestCase.test_modify_source_file_while_debugging
TestSourceManager.SourceManagerTestCase.test_set_breakpoint_with_absolute_path
TestSourceRegexBreakpoints.TestSourceRegexBreakpoints.test_location
TestSourceRegexBreakpoints.TestSourceRegexBreakpoints.test_restrictions
TestStepTarget.TestStepTarget.test_with_end_line
TestStepTarget.TestStepTarget.test_with_end_line_bad_name
TestStepTarget.TestStepTarget.test_with_end_line_deeper
TestStepTarget.TestStepTarget.test_with_end_line
TestThreadJump
TestThreadSpecificBpPlusCondition.ThreadSpecificBreakPlusConditionTestCase.test_python
TestUnwindExpression.UnwindFromExpressionTest.test_unwind_expression
test_lldbmi
10 changes: 0 additions & 10 deletions Support/Testing/Blacklists/ds2/llvm_60.blacklist

This file was deleted.

43 changes: 35 additions & 8 deletions Support/Testing/Blacklists/ds2/platform.blacklist
@@ -1,19 +1,46 @@
skip
DisassembleRawDataTestCase.test_disassemble_raw_data
GdbRemote
HelloWorldTestCase.test_with_attach_to_process_with_name_api
LinuxCore
LldbGdbServer
GdbRemote
TestBreakpointCommand.BreakpointCommandTestCase.test_breakpoint_command_sequence
TestBreakpointConditions.BreakpointConditionsTestCase.test_breakpoint_invalid_condition_and_python_api_dwarf
TestBreakpointHitCount.BreakpointHitCountTestCase.test_breakpoint_location_hit_count
TestBreakpointHitCount.BreakpointHitCountTestCase.test_breakpoint_one_shot
TestBreakpointIgnoreCount.BreakpointIgnoreCountTestCase.test_with_python_api_dwarf
TestCPPExceptionBreakpoint.TestCPPExceptionBreakpoint.test_cpp_exception_breakpoint_dwarf
TestCallUserAnonTypedef.TestExprLookupAnonStructTypedef.test_dwarf
TestChangeValueAPI.ChangeValueAPITestCase
TestConsecutiveBreakpoints.ConsecutiveBreakpointsTestCase.test_continue
TestConsecutiveBreakpoints.ConsecutiveBreakpointsTestCase.test_single_step
TestDebugBreak.DebugBreakTestCase.test_asm_int_3
TestExprDoesntBlock.ExprDoesntDeadlockTestCase.test_with_run_command_dwarf
TestGDBRemoteClient.TestGDBRemoteClient
TestGDBRemoteLoad.TestGDBRemoteLoad
TestHandleSegv.HandleSegvTestCase.test_inferior_handle_sigsegv_dwarf
TestHistoryRecall.test_history_recall
TestLLVMStyle.test_with_dwarf
TestMembersAndLocalsWithSameName.TestMembersAndLocalsWithSameName.test_when_stopped_in_method_dwarf
TestMixedLanguages.MixedLanguagesTestCase
TestMoveNearest.TestMoveNearest.test
TestNamespaceConflicts.test_with_dwarf
TestNumThreads.NumberOfThreadsTestCase.test_unique_stacks
TestPythonOSPlugin.PluginPythonOSPlugin.test_python_os_plugin_dwarf
TestQuoting
TestRaise.RaiseTestCase.test_sigsigrtmin
TestRegisters.RegisterCommandsTestCase.test_fp_register_write
TestRestartBug
TestSampleInlineTest.test_with_dwarf
TestChangeValueAPI.ChangeValueAPITestCase
TestSendSignal.SendSignalTestCase.test_with_run_command_dwarf
TestStepOverBreakpoint.StepOverBreakpointsTestCase.test_step_instruction_dwarf
TestStepOverBreakpoint.StepOverBreakpointsTestCase.test_step_over_dwarf
TestSymbols.test_with_dwarf
TestQuoting
TestMixedLanguages.MixedLanguagesTestCase
TestTargetXMLArch
TestThreadSelectionBug
TestThreadStepping.ThreadSteppingTestCase


xfail
AttachDeniedTestCase.test_attach_to_process_by_id_denied
ChangeProcessGroupTestCase.test_setpgid
Expand All @@ -24,11 +51,11 @@ ProcessAttachTestCase.test_attach_to_process_by_id
ProcessAttachTestCase.test_attach_to_process_by_name
RegisterCommandsTestCase.test_convenience_registers_16bit_with_process_attach
RegisterCommandsTestCase.test_convenience_registers_with_process_attach
TestBreakpointLocations.BreakpointLocationsTestCase
TestBreakpointOptions.BreakpointOptionsTestCase
TestBreakpointsWithNoTargets.BreakpointInDummyTarget
TestConsecutiveBreakpoints.ConsecutiveBreakpointsTestCase.test_single_step_thread_specific
TestMembersAndLocalsWithSameName.TestMembersAndLocalsWithSameName.test_when_stopped_in_function
TestPlatformProcessConnect.TestPlatformProcessConnect.test_platform_process_connect
TestValueOfVectorVariableTestCase.test_value_of_vector_variable_using_watchpoint_set
TestBreakpointOptions.BreakpointOptionsTestCase
TestBreakpointLocations.BreakpointLocationsTestCase
TestBreakpointsWithNoTargets.BreakpointInDummyTarget
TestTargetCommand.targetCommandTestCase
TestValueOfVectorVariableTestCase.test_value_of_vector_variable_using_watchpoint_set
41 changes: 41 additions & 0 deletions Support/Testing/Blacklists/ds2/x86-platform.blacklist
@@ -0,0 +1,41 @@
xfail
TestProcessAttach.ProcessAttachTestCase.test_attach_to_process_from_different_dir_by_id
TestFloatTypes.FloatTypesTestCase.test_double_type_dwarf
TestFloatTypes.FloatTypesTestCase.test_float_type_dwarf
TestFloatTypesExpr.FloatTypesExprTestCase.test_double_type_dwarf
TestFloatTypesExpr.FloatTypesExprTestCase.test_float_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_char_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_int_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_long_long_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_long_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_short_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_unsigned_char_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_unsigned_int_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_unsigned_long_long_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_unsigned_long_type_dwarf
TestIntegerTypes.IntegerTypesTestCase.test_unsigned_short_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_char_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_int_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_long_long_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_long_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_short_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_unsigned_char_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_unsigned_int_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_unsigned_long_long_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_unsigned_long_type_dwarf
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_unsigned_short_type_dwarf
TestProcessIO.ProcessIOTestCase.test_stderr_redirection_dwarf
TestProcessIO.ProcessIOTestCase.test_stdout_redirection_dwarf
TestProcessIO.ProcessIOTestCase.test_stdout_stderr_redirection_dwarf

skip
TestTargetSourceMap.TestTargetSourceMap.test_source_map
lldbsuite.test.lldbtest.TestDataFormatterInvalidStdUniquePtr.test
lldbsuite.test.lldbtest.TestGModules.test_dwarf
lldbsuite.test.lldbtest.TestLLVMStyle.test_dwarf
lldbsuite.test.lldbtest.TestNamespaceConflicts.test_dwarf
lldbsuite.test.lldbtest.TestSampleInlineTest.test_dwarf
lldbsuite.test.lldbtest.TestScalarURem.test_dwarf
lldbsuite.test.lldbtest.TestStats.test_dwarf
lldbsuite.test.lldbtest.TestSymbols.test_dwarf
lldbsuite.test.lldbtest.TestVirtualOverload.test_dwarf
6 changes: 6 additions & 0 deletions Support/Testing/Blacklists/ds2/x86.blacklist
@@ -1,8 +1,14 @@
xfail
TestLldbGdbServer.LldbGdbServerTestCase.test_p_returns_correct_data_size_for_each_qRegisterInfo_attach_llgs
TestLldbGdbServer.LldbGdbServerTestCase.test_p_returns_correct_data_size_for_each_qRegisterInfo_launch_llgs
TestLoadUsingPaths.LoadUsingPathsTestCase.test_load_using_paths
TestProcessLaunch.ProcessLaunchTestCase.test_set_working_dir_existing
TestLoadUsingPaths.LoadUsingPathsTestCase.test_load_using_paths
TestProcessLaunch.ProcessLaunchTestCase.test_set_working_dir_existing

skip
TestChangeValueAPI.ChangeValueAPITestCase.test_change_value
TestIntegerTypesExpr.IntegerTypesExprTestCase.test_unsigned_int_type
TestReturnValue
TestSettings.SettingsCommandTestCase.test_pass_host_env_vars
TestSettings.SettingsCommandTestCase.test_run_args_and_env_vars

0 comments on commit 3605c55

Please sign in to comment.