[Lldb-commits] [lldb] Missed disabling the baseline test for DWP stuff (PR #98351)
Kevin Frei via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 10 10:05:47 PDT 2024
https://github.com/kevinfrei created https://github.com/llvm/llvm-project/pull/98351
This should disable the failing test on the ubuntu build bots @JDevlieghere (I forgot to disable the 'baseline' test, as it tests the debugger's basic handling of DWP files, but again, the API infrastructure doesn't quite support DWP generation)
https://github.com/llvm/llvm-project/pull/98344#issuecomment-2221000566
>From 9840146580768d72eed4ec43941751d5a3859f9c Mon Sep 17 00:00:00 2001
From: Kevin Frei <freik at meta.com>
Date: Wed, 10 Jul 2024 10:02:47 -0700
Subject: [PATCH] Missed disabling the baseline test for DWP stuff
---
lldb/test/API/debuginfod/SplitDWARF/TestDebuginfodDWP.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lldb/test/API/debuginfod/SplitDWARF/TestDebuginfodDWP.py b/lldb/test/API/debuginfod/SplitDWARF/TestDebuginfodDWP.py
index 129f402c6a124..437c83a820fb7 100644
--- a/lldb/test/API/debuginfod/SplitDWARF/TestDebuginfodDWP.py
+++ b/lldb/test/API/debuginfod/SplitDWARF/TestDebuginfodDWP.py
@@ -25,7 +25,7 @@ class DebugInfodDWPTests(TestBase):
# No need to try every flavor of debug inf.
NO_DEBUG_INFO_TESTCASE = True
- @skipUnlessPlatform(["linux", "freebsd"])
+ @skipUnlessPlatform(["linux_freebsd_but_old_dwp_tools_on_build_bots_are_broken"])
def test_normal_stripped(self):
"""
Validate behavior with a stripped binary, no symbols or symbol locator.
More information about the lldb-commits
mailing list