[Lldb-commits] [lldb] [LLDB] Remove decorator from XPASSes x86/Windows (PR #100628)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 25 11:30:03 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Vladislav Dzhidzhoev (dzhidzhoev)
<details>
<summary>Changes</summary>
This patch remove XFAIL decorator from tests which are passing on x86 Windows.
Corresponding XFAILs for AArch64 were removed here 7daa9a9b40a22.
---
Full diff: https://github.com/llvm/llvm-project/pull/100628.diff
2 Files Affected:
- (modified) lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py (-3)
- (modified) lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py (-3)
``````````diff
diff --git a/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py b/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py
index 9e484e0132c83..730537da2fccf 100644
--- a/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py
+++ b/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py
@@ -5,9 +5,6 @@
class TestCaseClassTemplateNonTypeParameterPack(TestBase):
- @expectedFailureAll(
- oslist=["windows"], archs=["i[3-6]86", "x86_64"]
- ) # Fails to read memory from target.
@no_debug_info_test
def test(self):
self.build()
diff --git a/lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py b/lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py
index 102c00dc603df..1ed643e6dd85c 100644
--- a/lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py
+++ b/lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py
@@ -5,9 +5,6 @@
class TestCaseClassTemplateTypeParameterPack(TestBase):
- @expectedFailureAll(
- oslist=["windows"], archs=["i[3-6]86", "x86_64"]
- ) # Fails to read memory from target.
@no_debug_info_test
def test(self):
self.build()
``````````
</details>
https://github.com/llvm/llvm-project/pull/100628
More information about the lldb-commits
mailing list