From 927afdffbb1deebd83b86d024b67687d758521d0 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 5 Aug 2020 15:37:50 -0700 Subject: [PATCH] [lldb] Skip test_launch_simple on Windows Because stdio manipulation unsupported on Windows. --- lldb/test/API/python_api/target/TestTargetAPI.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/python_api/target/TestTargetAPI.py b/lldb/test/API/python_api/target/TestTargetAPI.py index f6b349bd6a3d..5bdbf90b3575 100644 --- a/lldb/test/API/python_api/target/TestTargetAPI.py +++ b/lldb/test/API/python_api/target/TestTargetAPI.py @@ -152,6 +152,7 @@ def test_read_memory(self): @add_test_categories(['pyapi']) + @skipIfWindows # stdio manipulation unsupported on Windows def test_launch_simple(self): d = {'EXE': 'b.out'} self.build(dictionary=d)