Move struct_types, stepping, and set_values dirs to now reside under lang/c.

Move stl dir to now reside under lang/cpp.

llvm-svn: 133884
This commit is contained in:
Johnny Chen 2011-06-25 21:07:03 +00:00
parent 23beac3368
commit 8d798eb3c6
15 changed files with 9 additions and 9 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 SetValuesTestCase(TestBase):
mydir = "set_values"
mydir = os.path.join("lang", "c", "set_values")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
LEVEL = ../make
LEVEL = ../../../make
CXX_SOURCES := main.cpp
CFLAGS :=-arch x86_64 -gdwarf-2 -Os

View File

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

View File

@ -9,7 +9,7 @@ from lldbtest import *
class StdCXXDisassembleTestCase(TestBase):
mydir = "stl"
mydir = os.path.join("lang", "cpp", "stl")
def setUp(self):
# Call super's setUp().