forked from OSchip/llvm-project
Move top level test dirs platform and inferior-crashing to reside under functionalities and order to reside under macosx.
llvm-svn: 133919
This commit is contained in:
parent
85f21f2029
commit
fd70999bb4
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
|
|
@ -7,7 +7,7 @@ from lldbtest import *
|
|||
|
||||
class CrashingInferiorTestCase(TestBase):
|
||||
|
||||
mydir = "inferior-crashing"
|
||||
mydir = os.path.join("functionalities", "inferior-crashing")
|
||||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
def test_inferior_crashing_dsym(self):
|
|
@ -9,7 +9,7 @@ from lldbtest import *
|
|||
|
||||
class PlatformCommandTestCase(TestBase):
|
||||
|
||||
mydir = "platform"
|
||||
mydir = os.path.join("functionalities", "platform")
|
||||
|
||||
def test_help_platform(self):
|
||||
self.runCmd("help platform")
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
LDFLAGS = $(CFLAGS) -Xlinker -order_file ./order-file
|
|
@ -10,7 +10,7 @@ from lldbtest import *
|
|||
|
||||
class OrderFileTestCase(TestBase):
|
||||
|
||||
mydir = "order"
|
||||
mydir = os.path.join("macosx", "order")
|
||||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
def test_with_dsym(self):
|
Loading…
Reference in New Issue