[Lldb-commits] [lldb] 6a1a393 - [LLDB] Remove decorator from XPASSes x86/Windows (#100628)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 26 05:28:22 PDT 2024
Author: Vladislav Dzhidzhoev
Date: 2024-07-26T14:28:11+02:00
New Revision: 6a1a393997fb5f7bdb01943ed48dc72d48861824
URL: https://github.com/llvm/llvm-project/commit/6a1a393997fb5f7bdb01943ed48dc72d48861824
DIFF: https://github.com/llvm/llvm-project/commit/6a1a393997fb5f7bdb01943ed48dc72d48861824.diff
LOG: [LLDB] Remove decorator from XPASSes x86/Windows (#100628)
This patch removes XFAIL decorators from tests that are passing on x86
Windows.
Corresponding XFAILs for AArch64 were removed here 7daa9a9b40a22.
Added:
Modified:
lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py
lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py
Removed:
################################################################################
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()
More information about the lldb-commits
mailing list