[Lldb-commits] [lldb] r367285 - [lldb] [test] Mark newly running test XFAIL on NetBSD

Michal Gorny via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 29 23:12:03 PDT 2019


Author: mgorny
Date: Mon Jul 29 23:12:03 2019
New Revision: 367285

URL: http://llvm.org/viewvc/llvm-project?rev=367285&view=rev
Log:
[lldb] [test] Mark newly running test XFAIL on NetBSD

The test was not previously run due to decorator bug (fixed in r366903).
It is not a regression and is probably related to the other failing
test, so just disable it.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py?rev=367285&r1=367284&r2=367285&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py Mon Jul 29 23:12:03 2019
@@ -109,6 +109,7 @@ class HelloWorldTestCase(TestBase):
     @add_test_categories(['pyapi'])
     @skipIfiOSSimulator
     @skipIfSanitized # FIXME: Hangs indefinitely.
+    @expectedFailureNetBSD
     def test_with_attach_to_process_with_name_api(self):
         """Create target, spawn a process, and attach to it with process name."""
         exe = '%s_%d'%(self.getBuildArtifact(self.testMethodName), os.getpid())




More information about the lldb-commits mailing list