From: Jim Ingham Date: Thu, 4 Jun 2020 17:49:26 +0000 (-0700) Subject: Disable this test for Windows. X-Git-Tag: llvmorg-12-init~4113 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a976a7fcae44ed5ca9e4f13735a4f91378169282;p=platform%2Fupstream%2Fllvm.git Disable this test for Windows. The printf expression crashes with the message: Attempted to dereference an invalid pointer Someone who knows more about Windows should suggest how to fix this. --- diff --git a/lldb/test/API/functionalities/thread/state_after_expression/TestStateAfterExpression.py b/lldb/test/API/functionalities/thread/state_after_expression/TestStateAfterExpression.py index 082b556..b108d53 100644 --- a/lldb/test/API/functionalities/thread/state_after_expression/TestStateAfterExpression.py +++ b/lldb/test/API/functionalities/thread/state_after_expression/TestStateAfterExpression.py @@ -8,12 +8,13 @@ during an expression is not changed by running the expression import lldb import lldbsuite.test.lldbutil as lldbutil from lldbsuite.test.lldbtest import * - +from lldbsuite.test.decorators import * class TestStopReasonAfterExpression(TestBase): mydir = TestBase.compute_mydir(__file__) + @skipIfWindows def test_thread_state_after_expr(self): self.build() self.main_source_file = lldb.SBFileSpec("main.cpp")