[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.

llvm-svn: 367285
This commit is contained in:
Michal Gorny 2019-07-30 06:12:03 +00:00
parent b1cbe51bdf
commit f9108f76fa
1 changed files with 1 additions and 0 deletions

View File

@ -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())