forked from OSchip/llvm-project
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:
parent
23beac3368
commit
8d798eb3c6
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
CFLAGS :=-arch x86_64 -gdwarf-2 -Os
|
|
@ -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):
|
|
@ -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().
|
Loading…
Reference in New Issue