Skip to content

Commit 2998d95

Browse files
author
Kevin Frei
committed
Skip the tests for non-*nix platforms
1 parent 9713607 commit 2998d95

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

lldb/test/API/debuginfod/Normal/TestDebuginfod.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import struct
55

66
import lldb
7+
from lldbsuite.test.decorators import *
78
import lldbsuite.test.lldbutil as lldbutil
89
from lldbsuite.test.lldbtest import *
910

@@ -34,6 +35,7 @@ def getUUID(aoutuuid):
3435
1 - A stripped binary with it's corresponding unstripped binary:
3536
2 - A stripped binary with a corresponding --only-keep-debug symbols file
3637
"""
38+
@skipUnlessPlatform(["linux", "freebsd"])
3739
class DebugInfodTests(TestBase):
3840
# No need to try every flavor of debug inf.
3941
NO_DEBUG_INFO_TESTCASE = True

lldb/test/API/debuginfod/SplitDWARF/TestDebuginfodDWP.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import struct
88

99
import lldb
10+
from lldbsuite.test.decorators import *
1011
import lldbsuite.test.lldbutil as lldbutil
1112
from lldbsuite.test.lldbtest import *
1213

@@ -36,6 +37,7 @@ def getUUID(aoutuuid):
3637
2 - A stripped, split binary target with an unstripped binary and a DWP file
3738
3 - A stripped, split binary target with an --only-keep-debug symbols file and a DWP file
3839
"""
40+
@skipUnlessPlatform(["linux", "freebsd"])
3941
class DebugInfodDWPTests(TestBase):
4042
# No need to try every flavor of debug inf.
4143
NO_DEBUG_INFO_TESTCASE = True

0 commit comments

Comments
 (0)