forked from OSchip/llvm-project
Split skipIf decorator, the condition is supposed to be OR
llvm-svn: 327644
This commit is contained in:
parent
28d3e1ac41
commit
96cf00d01d
|
@ -26,7 +26,8 @@ class ObjCModulesAutoImportTestCase(TestBase):
|
|||
self.line = line_number('main.m', '// Set breakpoint 0 here.')
|
||||
|
||||
@skipUnlessDarwin
|
||||
@skipIf(macos_version=["<", "10.12"], debug_info=no_match(["gmodules"]))
|
||||
@skipIf(macos_version=["<", "10.12"])
|
||||
@skipIf(debug_info=no_match(["gmodules"]))
|
||||
def test_expr(self):
|
||||
self.build()
|
||||
exe = self.getBuildArtifact("a.out")
|
||||
|
|
Loading…
Reference in New Issue