From b0929da890493a5f1d71a9e9cfcbdb8db3651608 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 28 Jul 2026 09:44:59 -0700 Subject: [PATCH 1/4] GHA: don't let grep swallow crash output as binary When dotest's harness hard-crashes (the intermittent segfault we keep seeing on Linux/Android functionalities), whatever it wrote right before dying can contain a stray NUL byte, and grep treats the whole stream as binary from that point on, printing just "binary file matches" instead of the crash text -- exactly the diagnostic output we need to root-cause it. -a forces grep to keep treating it as text. --- .github/actions/run-lldb-tests/action.yml | 2 +- .github/workflows/test-android.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/run-lldb-tests/action.yml b/.github/actions/run-lldb-tests/action.yml index 25cbe93a..1529e1cc 100644 --- a/.github/actions/run-lldb-tests/action.yml +++ b/.github/actions/run-lldb-tests/action.yml @@ -91,4 +91,4 @@ runs: --excluded "$excluded_dir/ds2/${{ inputs.platform }}-${{ inputs.arch }}.excluded" \ --excluded "$excluded_dir/upstream/non-debugserver-tests.excluded" \ -v \ - ${{ inputs.test-subdirs }} 2>&1 | grep -v '^UNSUPPORTED: LLDB ' + ${{ inputs.test-subdirs }} 2>&1 | grep -a -v '^UNSUPPORTED: LLDB ' diff --git a/.github/workflows/test-android.yml b/.github/workflows/test-android.yml index 81e569d0..359d60e2 100644 --- a/.github/workflows/test-android.yml +++ b/.github/workflows/test-android.yml @@ -123,7 +123,7 @@ jobs: -v ${{ steps.test-subdirs.outputs.dirs }} 1>/dev/null 2>/tmp/dotest-android-x86_64.log; - rc=$?; grep -v '^UNSUPPORTED: LLDB ' /tmp/dotest-android-x86_64.log; exit $rc + rc=$?; grep -a -v '^UNSUPPORTED: LLDB ' /tmp/dotest-android-x86_64.log; exit $rc # Run a small sub-set of tests on arm64. The emulator is very slow so it is # not practical to run more tests until we can run on an arm64 runner with @@ -220,4 +220,4 @@ jobs: SourceCache/llvm/lldb/test/API/linux SourceCache/llvm/lldb/test/API/sanity 1>/dev/null 2>/tmp/dotest-android-arm64-v8a.log; - rc=$?; grep -v '^UNSUPPORTED: LLDB ' /tmp/dotest-android-arm64-v8a.log; exit $rc + rc=$?; grep -a -v '^UNSUPPORTED: LLDB ' /tmp/dotest-android-arm64-v8a.log; exit $rc From 106e18b25e81239907bfd56296bf19dc472ee00c Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 28 Jul 2026 10:23:32 -0700 Subject: [PATCH 2/4] Testing: drop confirmed-passing entries from ds2 exclusion lists Verified against PR #247's trial run (exclusion lists emptied, every test actually executed): each dropped entry has an explicit PASS/XFAIL line for its full Module.Class.method identifier, not just an absence from the failure list, since several class names share generically- named methods (test_dwarf, test_dwo, etc.) that would otherwise cause false matches across unrelated classes. Entries with no explicit pass or fail evidence (category-skipped, or belonging to categories still in flight when this was written) are left excluded rather than guessed at. linux-aarch64.excluded and android-aarch64.excluded are untouched: aarch64 categories hadn't finished, and the android-aarch64 sanity run's 4 exclusions all still fail exactly as before. --- Support/Testing/Excluded/ds2/android-x86_64.excluded | 12 ------------ Support/Testing/Excluded/ds2/linux-i686.excluded | 9 --------- Support/Testing/Excluded/ds2/linux-x86_64.excluded | 11 ----------- 3 files changed, 32 deletions(-) diff --git a/Support/Testing/Excluded/ds2/android-x86_64.excluded b/Support/Testing/Excluded/ds2/android-x86_64.excluded index aef6cef3..31472670 100644 --- a/Support/Testing/Excluded/ds2/android-x86_64.excluded +++ b/Support/Testing/Excluded/ds2/android-x86_64.excluded @@ -9,15 +9,11 @@ TestConcurrentSignalWatch.ConcurrentSignalWatch.test TestConcurrentTwoBreakpointsOneSignal.ConcurrentTwoBreakpointsOneSignal.test TestCreateAfterAttach.CreateAfterAttachTestCase.test_create_after_attach_dwarf TestCreateAfterAttach.CreateAfterAttachTestCase.test_create_after_attach_dwo -TestDataFormatterCaching.TestDataFormatterCaching.test_with_run_command_dwarf -TestDataFormatterCaching.TestDataFormatterCaching.test_with_run_command_dwo TestDataFormatterSynthVal.DataFormatterSynthValueTestCase.test_with_run_command_dwarf TestDataFormatterSynthVal.DataFormatterSynthValueTestCase.test_with_run_command_dwo TestExec.ExecTestCase.test_correct_thread_plan_state_before_exec TestExec.ExecTestCase.test_hitting_exec TestExec.ExecTestCase.test_skipping_exec -TestExprDoesntBlock.ExprDoesntDeadlockTestCase.test_with_run_command_dwarf -TestExprDoesntBlock.ExprDoesntDeadlockTestCase.test_with_run_command_dwo TestExpressionInSyscall.ExprSyscallTestCase.test_setpgid_dwarf TestExpressionInSyscall.ExprSyscallTestCase.test_setpgid_dwo TestFindInMemory.FindInMemoryTestCase.test_find_in_memory_ok @@ -77,14 +73,10 @@ TestGdbRemoteThreadsInStopReply.TestGdbRemoteThreadsInStopReply.test_stop_reply_ TestHelloWorld.HelloWorldTestCase.test_with_attach_to_process_with_name_api TestInferiorCrashing.CrashingInferiorTestCase.test_inferior_crashing_dwarf TestInferiorCrashing.CrashingInferiorTestCase.test_inferior_crashing_dwo -TestLldbGdbServer.LldbGdbServerTestCase.test_Hc_then_Csignal_signals_correct_thread_launch_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_another_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_minus_one_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_zero_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_switches_to_3_threads_launch_llgs -TestLldbGdbServer.LldbGdbServerTestCase.test_qMemoryRegionInfo_reports_heap_address_as_rw_llgs -TestLldbGdbServer.LldbGdbServerTestCase.test_qMemoryRegionInfo_reports_stack_address_as_rw_llgs -TestLldbGdbServer.LldbGdbServerTestCase.test_qRegisterInfo_contains_avx_registers_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_fork_events_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_siginfo_read_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_vfork_events_llgs @@ -122,10 +114,7 @@ TestSendSignal.SendSignalTestCase.test_with_run_command_dwarf TestSendSignal.SendSignalTestCase.test_with_run_command_dwo TestSettings.SettingsCommandTestCase.test_launchsimple_args_and_env_vars TestSettings.SettingsCommandTestCase.test_run_args_and_env_vars -TestSingleThreadStepTimeout.SingleThreadStepTimeoutTestCase.test_step_over_deadlock_large_timeout_fast_stepping -TestSingleThreadStepTimeout.SingleThreadStepTimeoutTestCase.test_step_over_deadlock_large_timeout_slow_stepping TestSingleThreadStepTimeout.SingleThreadStepTimeoutTestCase.test_step_over_deadlock_small_timeout_fast_stepping -TestSingleThreadStepTimeout.SingleThreadStepTimeoutTestCase.test_step_over_deadlock_small_timeout_slow_stepping TestStateAfterExpression.TestStopReasonAfterExpression.test_thread_state_after_expr_dwarf TestStateAfterExpression.TestStopReasonAfterExpression.test_thread_state_after_expr_dwo TestSyntheticCapping.SyntheticCappingTestCase.test_with_run_command_dwo @@ -134,7 +123,6 @@ TestTargetCreateDeps.TargetDependentsTestCase.test_dependents_explicit_false_exe TestTargetCreateDeps.TargetDependentsTestCase.test_dependents_explicit_false_lib TestTargetCreateDeps.TargetDependentsTestCase.test_dependents_implicit_default_exe TestTargetCreateDeps.TargetDependentsTestCase.test_dependents_implicit_default_lib -TestThreadStates.ThreadStateTestCase.test_process_interrupt TestUnalignedLargeWatchpoint.UnalignedLargeWatchpointTestCase.test_unaligned_large_watchpoint TestUnwindExpression.UnwindFromExpressionTest.test_unwind_expression_dwarf TestUnwindExpression.UnwindFromExpressionTest.test_unwind_expression_dwo diff --git a/Support/Testing/Excluded/ds2/linux-i686.excluded b/Support/Testing/Excluded/ds2/linux-i686.excluded index de10ba23..f73e7883 100644 --- a/Support/Testing/Excluded/ds2/linux-i686.excluded +++ b/Support/Testing/Excluded/ds2/linux-i686.excluded @@ -3,11 +3,7 @@ TestBadAddressBreakpoints.BadAddressBreakpointTestCase.test_bad_address_breakpoi TestBreakpointSerialization.BreakpointSerialization.test_scripted_extra_args TestBreakpointSetRestart.BreakpointSetRestart.test_breakpoint_set_restart_dwarf TestBreakpointSetRestart.BreakpointSetRestart.test_breakpoint_set_restart_dwo -TestCallStopAndContinue.ExprCommandCallStopContinueTestCase.test_dwarf -TestCallStopAndContinue.ExprCommandCallStopContinueTestCase.test_dwo TestCommandScript.CmdPythonTestCase.test -TestCppGlobalOperators.TestCppGlobalOperators.test_operator_new_dwarf -TestCppGlobalOperators.TestCppGlobalOperators.test_operator_new_dwo TestDataFormatterCaching.TestDataFormatterCaching.test_with_run_command_dwarf TestDataFormatterCaching.TestDataFormatterCaching.test_with_run_command_dwo TestDataFormatterGenericMultiSet.GenericMultiSetDataFormatterTestCase.test_with_run_command_libstdcpp_dwo @@ -82,8 +78,6 @@ TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_another_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_minus_one_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_zero_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_switches_to_3_threads_launch_llgs -TestLldbGdbServer.LldbGdbServerTestCase.test_qMemoryRegionInfo_reports_code_address_as_executable_llgs -TestLldbGdbServer.LldbGdbServerTestCase.test_qMemoryRegionInfo_reports_heap_address_as_rw_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_fork_events_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_siginfo_read_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_vfork_events_llgs @@ -94,7 +88,6 @@ TestMainThreadExit.ThreadExitTestCase.test TestMemoryHoles.MemoryHolesTestCase.test_memory_find TestMemoryRegion.MemoryCommandRegion.test_command TestMemoryRegion.MemoryCommandRegion.test_no_overlapping_regions -TestNestedAlias.NestedAliasTestCase.test_nested_alias TestNonStop.LldbGdbServerTestCase.test_exit_llgs TestNonStop.LldbGdbServerTestCase.test_exit_query_llgs TestNonStop.LldbGdbServerTestCase.test_leave_nonstop_llgs @@ -126,8 +119,6 @@ TestSingleThreadStepTimeout.SingleThreadStepTimeoutTestCase.test_step_over_multi TestStateAfterExpression.TestStopReasonAfterExpression.test_thread_state_after_expr_dwarf TestStateAfterExpression.TestStopReasonAfterExpression.test_thread_state_after_expr_dwo TestSyntheticCapping.SyntheticCappingTestCase.test_with_run_command_dwo -TestThreadBacktraceRepeat.TestThreadBacktracePage.test_thread_backtrace_one_thread -TestThreadBacktraceRepeat.TestThreadBacktracePage.test_thread_backtrace_two_threads TestThreadJump.ThreadJumpTestCase.test_dwarf TestThreadJump.ThreadJumpTestCase.test_dwo TestVectorTypesFormatting.VectorTypesFormattingTestCase.test_with_run_command_dwarf diff --git a/Support/Testing/Excluded/ds2/linux-x86_64.excluded b/Support/Testing/Excluded/ds2/linux-x86_64.excluded index dd4072b6..86073082 100644 --- a/Support/Testing/Excluded/ds2/linux-x86_64.excluded +++ b/Support/Testing/Excluded/ds2/linux-x86_64.excluded @@ -1,10 +1,6 @@ skip TestBreakpointSerialization.BreakpointSerialization.test_scripted_extra_args -TestBreakpointSetRestart.BreakpointSetRestart.test_breakpoint_set_restart_dwarf -TestBreakpointSetRestart.BreakpointSetRestart.test_breakpoint_set_restart_dwo TestCommandScript.CmdPythonTestCase.test -TestDataFormatterCaching.TestDataFormatterCaching.test_with_run_command_dwarf -TestDataFormatterCaching.TestDataFormatterCaching.test_with_run_command_dwo TestDataFormatterSynthVal.DataFormatterSynthValueTestCase.test_with_run_command_dwarf TestDataFormatterSynthVal.DataFormatterSynthValueTestCase.test_with_run_command_dwo TestDebuggerAPI.DebuggerAPITestCase.test_CreateTarget_platform @@ -22,7 +18,6 @@ TestFrames.FrameAPITestCase.test_get_arg_vals_for_call_stack_dwo TestGdbRemoteAttachWait.TestGdbRemoteAttachWait.test_attach_with_vAttachWait_llgs TestGdbRemoteAttachWait.TestGdbRemoteAttachWait.test_launch_after_attach_with_vAttachOrWait_llgs TestGdbRemoteAttachWait.TestGdbRemoteAttachWait.test_launch_before_attach_with_vAttachOrWait_llgs -TestGdbRemoteExpeditedRegisters.TestGdbRemoteExpeditedRegisters.test_stop_notification_contains_fp_register_llgs TestGdbRemoteFork.TestGdbRemoteFork.test_T_llgs TestGdbRemoteFork.TestGdbRemoteFork.test_c_child_llgs TestGdbRemoteFork.TestGdbRemoteFork.test_c_child_then_parent_llgs @@ -81,8 +76,6 @@ TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_another_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_minus_one_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_zero_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_switches_to_3_threads_launch_llgs -TestLldbGdbServer.LldbGdbServerTestCase.test_qMemoryRegionInfo_reports_heap_address_as_rw_llgs -TestLldbGdbServer.LldbGdbServerTestCase.test_qMemoryRegionInfo_reports_stack_address_as_rw_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_fork_events_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_siginfo_read_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_qSupported_vfork_events_llgs @@ -123,9 +116,5 @@ TestSyntheticCapping.SyntheticCappingTestCase.test_with_run_command_dwo TestTlsGlobals.TlsGlobalTestCase.test_dwarf TestTlsGlobals.TlsGlobalTestCase.test_dwo TestUnalignedLargeWatchpoint.UnalignedLargeWatchpointTestCase.test_unaligned_large_watchpoint -TestVectorTypesFormatting.VectorTypesFormattingTestCase.test_with_run_command_dwarf -TestVectorTypesFormatting.VectorTypesFormattingTestCase.test_with_run_command_dwo lldbsuite.test.lldbtest.TestPrintf.test_dwarf lldbsuite.test.lldbtest.TestPrintf.test_dwo -lldbsuite.test.lldbtest.TestTypedefArray.test_dwarf -lldbsuite.test.lldbtest.TestTypedefArray.test_dwo From 174a175c97c2cfa8d61169bb31b12339e0e9d52d Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 28 Jul 2026 13:37:03 -0700 Subject: [PATCH 3/4] Testing: re-exclude test_Hc_then_Csignal_signals_correct_thread_launch Its exclusion entry was added for aarch64 in 52d12780 under the old "_llgs"-suffixed method name; upstream since dropped that suffix, so the entry silently stopped matching and the test's known flakiness (staggered per-thread SIGSEGV timing racing a shared mutex) was free to surface again, this time on android-x86_64. Fix the stale name and add the current one to android-x86_64.excluded. --- Support/Testing/Excluded/ds2/android-x86_64.excluded | 1 + Support/Testing/Excluded/ds2/linux-aarch64.excluded | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Support/Testing/Excluded/ds2/android-x86_64.excluded b/Support/Testing/Excluded/ds2/android-x86_64.excluded index 31472670..a6832ec0 100644 --- a/Support/Testing/Excluded/ds2/android-x86_64.excluded +++ b/Support/Testing/Excluded/ds2/android-x86_64.excluded @@ -73,6 +73,7 @@ TestGdbRemoteThreadsInStopReply.TestGdbRemoteThreadsInStopReply.test_stop_reply_ TestHelloWorld.HelloWorldTestCase.test_with_attach_to_process_with_name_api TestInferiorCrashing.CrashingInferiorTestCase.test_inferior_crashing_dwarf TestInferiorCrashing.CrashingInferiorTestCase.test_inferior_crashing_dwo +TestLldbGdbServer.LldbGdbServerTestCase.test_Hc_then_Csignal_signals_correct_thread_launch TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_another_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_minus_one_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_zero_pid_llgs diff --git a/Support/Testing/Excluded/ds2/linux-aarch64.excluded b/Support/Testing/Excluded/ds2/linux-aarch64.excluded index 4daf4809..1042a197 100644 --- a/Support/Testing/Excluded/ds2/linux-aarch64.excluded +++ b/Support/Testing/Excluded/ds2/linux-aarch64.excluded @@ -73,7 +73,7 @@ TestHelloWorld.HelloWorldTestCase.test_with_attach_to_process_with_id_api TestHelloWorld.HelloWorldTestCase.test_with_attach_to_process_with_name_api TestInferiorCrashing.CrashingInferiorTestCase.test_inferior_crashing_dwarf TestInferiorCrashing.CrashingInferiorTestCase.test_inferior_crashing_dwo -TestLldbGdbServer.LldbGdbServerTestCase.test_Hc_then_Csignal_signals_correct_thread_launch_llgs +TestLldbGdbServer.LldbGdbServerTestCase.test_Hc_then_Csignal_signals_correct_thread_launch TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_another_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_minus_one_pid_llgs TestLldbGdbServer.LldbGdbServerTestCase.test_Hg_fails_on_zero_pid_llgs From 3974786460d367a42d1efc72c0e6203638e4194d Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 28 Jul 2026 14:00:00 -0700 Subject: [PATCH 4/4] Testing: re-exclude flaky/non-ds2 failures surfaced by the fresh prune run test_breakpoint_set_restart_dwarf/dwo (linux-x86_64) regressed: it was dropped from the ds2 list on single-run PASS evidence, but the same test was independently documented as flaky for other platforms in 593b9203 and 52d12780 (a race between LLDB's transparent stop-and- restart when setting a breakpoint on a running process and a genuine visible stop). Re-exclude it, and add test_detach_resumes, which times out waiting for an exit-file signal after detach on both linux-x86_64 and linux-i686. TestFrameRecognizer.* and TestRestartBug.test aren't ds2 issues at all: the former hits an LLDB FrameRecognizer scripting API mismatch, and the latter crashes entirely inside LLDB's own mock gdb-remote test harness (gdbclientutils.py) without ever reaching ds2. Both go in the upstream lists instead of the ds2 ones. --- Support/Testing/Excluded/ds2/linux-i686.excluded | 1 + Support/Testing/Excluded/ds2/linux-x86_64.excluded | 3 +++ Support/Testing/Excluded/upstream/android-x86_64.excluded | 1 + Support/Testing/Excluded/upstream/linux-i686.excluded | 2 ++ Support/Testing/Excluded/upstream/linux-x86_64.excluded | 5 +++++ 5 files changed, 12 insertions(+) diff --git a/Support/Testing/Excluded/ds2/linux-i686.excluded b/Support/Testing/Excluded/ds2/linux-i686.excluded index f73e7883..f2980b96 100644 --- a/Support/Testing/Excluded/ds2/linux-i686.excluded +++ b/Support/Testing/Excluded/ds2/linux-i686.excluded @@ -10,6 +10,7 @@ TestDataFormatterGenericMultiSet.GenericMultiSetDataFormatterTestCase.test_with_ TestDataFormatterHexCaps.DataFormatterHexCapsTestCase.test_with_run_command_dwo TestDataFormatterSynthVal.DataFormatterSynthValueTestCase.test_with_run_command_dwarf TestDataFormatterSynthVal.DataFormatterSynthValueTestCase.test_with_run_command_dwo +TestDetachResumes.DetachResumesTestCase.test_detach_resumes TestDyldExecLinux.TestLinux64ExecViaDynamicLoader.test_with_svr4 TestDyldExecLinux.TestLinux64ExecViaDynamicLoader.test_without_svr4 TestDyldLaunchLinux.TestLinux64LaunchingViaDynamicLoader.test diff --git a/Support/Testing/Excluded/ds2/linux-x86_64.excluded b/Support/Testing/Excluded/ds2/linux-x86_64.excluded index 86073082..8de6bf2c 100644 --- a/Support/Testing/Excluded/ds2/linux-x86_64.excluded +++ b/Support/Testing/Excluded/ds2/linux-x86_64.excluded @@ -1,9 +1,12 @@ skip TestBreakpointSerialization.BreakpointSerialization.test_scripted_extra_args +TestBreakpointSetRestart.BreakpointSetRestart.test_breakpoint_set_restart_dwarf +TestBreakpointSetRestart.BreakpointSetRestart.test_breakpoint_set_restart_dwo TestCommandScript.CmdPythonTestCase.test TestDataFormatterSynthVal.DataFormatterSynthValueTestCase.test_with_run_command_dwarf TestDataFormatterSynthVal.DataFormatterSynthValueTestCase.test_with_run_command_dwo TestDebuggerAPI.DebuggerAPITestCase.test_CreateTarget_platform +TestDetachResumes.DetachResumesTestCase.test_detach_resumes TestDyldExecLinux.TestLinux64ExecViaDynamicLoader.test_with_svr4 TestDyldExecLinux.TestLinux64ExecViaDynamicLoader.test_without_svr4 TestDyldLaunchLinux.TestLinux64LaunchingViaDynamicLoader.test diff --git a/Support/Testing/Excluded/upstream/android-x86_64.excluded b/Support/Testing/Excluded/upstream/android-x86_64.excluded index e3be0f38..9a173b81 100644 --- a/Support/Testing/Excluded/upstream/android-x86_64.excluded +++ b/Support/Testing/Excluded/upstream/android-x86_64.excluded @@ -85,6 +85,7 @@ TestPythonOSPlugin.PluginPythonOSPlugin.test_python_os_plugin TestRegisters.RegisterCommandsTestCase.test_fp_register_write TestRegisters.RegisterCommandsTestCase.test_fs_gs_base TestReportData.AsanTestReportDataCase.test_dwarf +TestRestartBug.TestRestartBug.test TestRetryWithStdModule.TestCase.test_dwarf TestRetryWithStdModule.TestCase.test_dwo TestScriptedProcess.ScriptedProcesTestCase.test_missing_methods_scripted_register_context diff --git a/Support/Testing/Excluded/upstream/linux-i686.excluded b/Support/Testing/Excluded/upstream/linux-i686.excluded index f42dcf15..f8f7d519 100644 --- a/Support/Testing/Excluded/upstream/linux-i686.excluded +++ b/Support/Testing/Excluded/upstream/linux-i686.excluded @@ -86,6 +86,8 @@ TestDynamicValue.DynamicValueTestCase.test_get_dynamic_vals_dwarf TestDynamicValue.DynamicValueTestCase.test_get_dynamic_vals_dwo TestFixIts.ExprCommandWithFixits.test_with_dummy_target_dwarf TestFrameRecognizer.FrameRecognizerTestCase.test_frame_recognizer_1 +TestFrameRecognizer.FrameRecognizerTestCase.test_frame_recognizer_hiding +TestFrameRecognizer.FrameRecognizerTestCase.test_frame_recognizer_multi_symbol TestFrameRecognizer.FrameRecognizerTestCase.test_frame_recognizer_not_only_first_instruction TestGDBRemoteClient.TestGDBRemoteClient.test_launch_A TestGDBRemoteClient.TestGDBRemoteClient.test_launch_A diff --git a/Support/Testing/Excluded/upstream/linux-x86_64.excluded b/Support/Testing/Excluded/upstream/linux-x86_64.excluded index 49291599..b25d8b23 100644 --- a/Support/Testing/Excluded/upstream/linux-x86_64.excluded +++ b/Support/Testing/Excluded/upstream/linux-x86_64.excluded @@ -5,6 +5,10 @@ TestDataFormatterPythonSynth.PythonSynthDataFormatterTestCase.test_with_run_comm TestDataFormatterSynthType.DataFormatterSynthTypeTestCase.test_with_run_command_dwarf TestDataFormatterSynthType.DataFormatterSynthTypeTestCase.test_with_run_command_dwo TestFixIts.ExprCommandWithFixits.test_with_dummy_target_dwarf +TestFrameRecognizer.FrameRecognizerTestCase.test_frame_recognizer_1 +TestFrameRecognizer.FrameRecognizerTestCase.test_frame_recognizer_hiding +TestFrameRecognizer.FrameRecognizerTestCase.test_frame_recognizer_multi_symbol +TestFrameRecognizer.FrameRecognizerTestCase.test_frame_recognizer_not_only_first_instruction TestGDBRemoteClient.TestGDBRemoteClient.test_launch_A TestGDBRemoteClient.TestGDBRemoteClient.test_launch_vRun TestInferiorChanged.ChangedInferiorTestCase.test_inferior_crashing @@ -15,6 +19,7 @@ TestModuleCacheUniversal.ModuleCacheTestcaseUniversal.test TestOSPluginStepping.TestOSPluginStepping.test_python_os_plugin TestOSPluginStepping.TestOSPluginStepping.test_python_os_plugin_prune TestPythonOSPlugin.PluginPythonOSPlugin.test_python_os_plugin +TestRestartBug.TestRestartBug.test TestScriptedResolver.TestScriptedResolver.test_command_line TestScriptedResolver.TestScriptedResolver.test_scripted_resolver TestScriptedResolver.TestScriptedResolver.test_search_depths