Move test dirs forward and function_types to now reside under lang/c.

llvm-svn: 133882
This commit is contained in:
Johnny Chen 2011-06-25 20:49:06 +00:00
parent fb8cd3712a
commit 04d9e8323e
9 changed files with 4 additions and 4 deletions

View File

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

View File

@ -7,7 +7,7 @@ from lldbtest import *
class ForwardDeclarationTestCase(TestBase):
mydir = "forward"
mydir = os.path.join("lang", "c", "forward")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):

View File

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

View File

@ -7,7 +7,7 @@ from lldbtest import *
class FunctionTypesTestCase(TestBase):
mydir = "function_types"
mydir = os.path.join("lang", "c", "function_types")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):