Move some directories to now reside under lang/c or lang/cpp.

llvm-svn: 133881
This commit is contained in:
Johnny Chen 2011-06-25 20:43:57 +00:00
parent 6684b1e19a
commit fb8cd3712a
25 changed files with 19 additions and 19 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 ArrayTypesTestCase(TestBase):
mydir = "array_types"
mydir = os.path.join("lang", "c", "array_types")
@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 BitfieldsTestCase(TestBase):
mydir = "bitfields"
mydir = os.path.join("lang", "c", "bitfields")
@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
CXX_SOURCES := main.cpp

View File

@ -9,7 +9,7 @@ from lldbtest import *
class StaticVariableTestCase(TestBase):
mydir = "class_static"
mydir = os.path.join("lang", "cpp", "class_static")
@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
CXX_SOURCES := main.cpp

View File

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

View File

@ -9,7 +9,7 @@ from lldbtest import *
class IterateFrameAndDisassembleTestCase(TestBase):
mydir = "class_types"
mydir = os.path.join("lang", "cpp", "class_types")
@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
CXX_SOURCES := main.cpp

View File

@ -10,7 +10,7 @@ from lldbtest import *
class UnsignedTypesTestCase(TestBase):
mydir = "signed_types"
mydir = os.path.join("lang", "cpp", "signed_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

View File

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

View File

@ -0,0 +1,5 @@
LEVEL = ../../../make
CXX_SOURCES := main.cpp
include $(LEVEL)/Makefile.rules

View File

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

View File

@ -1,5 +0,0 @@
LEVEL = ../make
CXX_SOURCES := main.cpp
include $(LEVEL)/Makefile.rules