Skip to content

Commit d2f6ac2

Browse files
committed
Revert "Fix skipIf which was doing || and I need &&"
This reverts commit 05a2b33.
1 parent f6ca690 commit d2f6ac2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

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

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

0 commit comments

Comments
 (0)