Skip to content

Commit 05a2b33

Browse files
committed
Fix skipIf which was doing || and I need &&
only run this test on linux or darwin when targetting arm64/aarch64.
1 parent e897cb1 commit 05a2b33

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lldb/test/API/functionalities/unwind/frameless-faulted/TestUnwindFramelessFaulted.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@
1010
class TestUnwindFramelessFaulted(TestBase):
1111
NO_DEBUG_INFO_TESTCASE = True
1212

13-
@skipIf(
14-
oslist=no_match([lldbplatformutil.getDarwinOSTriples(), "linux"]),
15-
archs=no_match(["aarch64", "arm64", "arm64e"]),
16-
)
13+
@skipIf(oslist=no_match([lldbplatformutil.getDarwinOSTriples(), "linux"]))
14+
@skipIf(archs=no_match(["aarch64", "arm64", "arm64e"]))
1715
def test_frameless_faulted_unwind(self):
1816
self.build()
1917

0 commit comments

Comments
 (0)