-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[lldb] Fix buildbots after PR 74786 #75272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fix unexpected pass after llvm#74786.
@llvm/pr-subscribers-lldb Author: Greg Clayton (clayborg) ChangesFix unexpected pass after #74786. Full diff: https://github.com/llvm/llvm-project/pull/75272.diff 1 Files Affected:
diff --git a/lldb/test/API/lang/cpp/union-static-data-members/TestCppUnionStaticMembers.py b/lldb/test/API/lang/cpp/union-static-data-members/TestCppUnionStaticMembers.py
index 1988e997499b2..dff23da8662a0 100644
--- a/lldb/test/API/lang/cpp/union-static-data-members/TestCppUnionStaticMembers.py
+++ b/lldb/test/API/lang/cpp/union-static-data-members/TestCppUnionStaticMembers.py
@@ -42,7 +42,7 @@ def test_expr_union_static_members(self):
name="val", value="42"
)])
- @expectedFailureAll
+ @expectedFailureWindows
def test_union_in_anon_namespace(self):
"""Tests that frame variable and expr work
for union static data members in anonymous
|
This test now passes after the new type lookup stuff went in due to improved lookups! |
Also fixed the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! lgtm
Going to merge this to fix the bots. Our Windows bot does have the DIA SDK installed, but I don't know if it's being used. We'll see, if it breaks, I'll deal with it. |
Fix unexpected pass after llvm#74786. (cherry picked from commit dcbf1e4)
Fix unexpected pass after llvm#74786. (cherry picked from commit dcbf1e4)
Fix unexpected pass after #74786.