From 21be357873c0325495c7f6599259579735f54f3e Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Tue, 3 Jan 2023 18:40:57 +0400 Subject: [PATCH] [LLDB] Skip python exception unit test on AArch64/Windows This patch marks python exception test as skipped for AArch64/Windows platform. This is temporary to make LLDB WoA buildbot happy until a proper fix is found. --- lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp b/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp index 8dd55a5..2bf713e 100644 --- a/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp +++ b/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp @@ -788,6 +788,8 @@ main = foo testing::ContainsRegex("line 7, in baz"), testing::ContainsRegex("ZeroDivisionError"))))); +#if !((defined(_WIN32) || defined(_WIN64)) && (defined(__aarch64__) || defined(_M_ARM64))) + static const char script2[] = R"( class MyError(Exception): def __str__(self): @@ -804,6 +806,8 @@ def main(): llvm::Failed(testing::Property( &PythonException::ReadBacktrace, testing::ContainsRegex("unprintable MyError")))); + +#endif } TEST_F(PythonDataObjectsTest, TestRun) { -- 2.7.4