[Lldb-commits] [lldb] 849ca46 - [LLDB] Skip TestFunctionTemplateSpecializationTempArgs for Arm64/Windows
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 24 08:08:43 PDT 2022
Author: Muhammad Omair Javaid
Date: 2022-08-24T20:07:00+05:00
New Revision: 849ca4626e9706d7b132ea696c5bf8c0ba0dc977
URL: https://github.com/llvm/llvm-project/commit/849ca4626e9706d7b132ea696c5bf8c0ba0dc977
DIFF: https://github.com/llvm/llvm-project/commit/849ca4626e9706d7b132ea696c5bf8c0ba0dc977.diff
LOG: [LLDB] Skip TestFunctionTemplateSpecializationTempArgs for Arm64/Windows
This test fails on buildbot while passes on standalone builds. I am
marking it as skipped until actual problem is found and resolved.
Added:
Modified:
lldb/test/API/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py
Removed:
################################################################################
diff --git a/lldb/test/API/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py b/lldb/test/API/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py
index 5bbed6e88751..a065153832af 100644
--- a/lldb/test/API/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py
+++ b/lldb/test/API/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py
@@ -5,6 +5,7 @@
class TestFunctionTemplateSpecializationTempArgs(TestBase):
+ @skipIf(oslist=['windows'], archs=['aarch64'])
def test_function_template_specialization_temp_args(self):
self.build()
More information about the lldb-commits
mailing list