[Lldb-commits] [lldb] 927afdf - [lldb] Skip test_launch_simple on Windows

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 5 15:38:14 PDT 2020


Author: Jonas Devlieghere
Date: 2020-08-05T15:38:07-07:00
New Revision: 927afdffbb1deebd83b86d024b67687d758521d0

URL: https://github.com/llvm/llvm-project/commit/927afdffbb1deebd83b86d024b67687d758521d0
DIFF: https://github.com/llvm/llvm-project/commit/927afdffbb1deebd83b86d024b67687d758521d0.diff

LOG: [lldb] Skip test_launch_simple on Windows

Because stdio manipulation unsupported on Windows.

Added: 
    

Modified: 
    lldb/test/API/python_api/target/TestTargetAPI.py

Removed: 
    


################################################################################
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)


        


More information about the lldb-commits mailing list