From a976a7fcae44ed5ca9e4f13735a4f91378169282 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Thu, 4 Jun 2020 10:49:26 -0700 Subject: [PATCH] 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. --- .../thread/state_after_expression/TestStateAfterExpression.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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") -- 2.7.4