[Lldb-commits] [lldb] 9c5e25a - [lldb] Skip test_launch_simple with reproducers
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Mon Aug 17 11:47:13 PDT 2020
Author: Jonas Devlieghere
Date: 2020-08-17T11:47:07-07:00
New Revision: 9c5e25a696b28b7ab31222b31503150c0847b9c3
URL: https://github.com/llvm/llvm-project/commit/9c5e25a696b28b7ab31222b31503150c0847b9c3
DIFF: https://github.com/llvm/llvm-project/commit/9c5e25a696b28b7ab31222b31503150c0847b9c3.diff
LOG: [lldb] Skip test_launch_simple with reproducers
The test checks the inferior's output. During replay the binary doesn't
actually run and the output isn't captured by the reproducers.
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 85a6d78bdf5a..a4d3aea94bec 100644
--- a/lldb/test/API/python_api/target/TestTargetAPI.py
+++ b/lldb/test/API/python_api/target/TestTargetAPI.py
@@ -154,6 +154,7 @@ def test_read_memory(self):
@add_test_categories(['pyapi'])
@skipIfWindows # stdio manipulation unsupported on Windows
@skipIfRemote # stdio manipulation unsupported on remote iOS devices<rdar://problem/54581135>
+ @skipIfReproducer # stdout not captured by reproducers
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
@no_debug_info_test
def test_launch_simple(self):
More information about the lldb-commits
mailing list