forked from OSchip/llvm-project
Move some directories to now reside under lang/c or lang/cpp.
llvm-svn: 133881
This commit is contained in:
parent
6684b1e19a
commit
fb8cd3712a
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
|
|
@ -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):
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
|
|
@ -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):
|
|
@ -0,0 +1,5 @@
|
|||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
|
@ -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):
|
|
@ -1,5 +0,0 @@
|
|||
LEVEL = ../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
Loading…
Reference in New Issue