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:
Johnny Chen 2011-06-27 18:25:00 +00:00
parent 85f21f2029
commit fd70999bb4
9 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
LEVEL = ../make
LEVEL = ../../make
C_SOURCES := main.c

View File

@ -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):

View File

@ -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")

View File

@ -1,4 +1,4 @@
LEVEL = ../make
LEVEL = ../../make
C_SOURCES := main.c
LDFLAGS = $(CFLAGS) -Xlinker -order_file ./order-file

View 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):