forked from OSchip/llvm-project
Move top level test dirs inlined_breakpoints, load_unload, and embedded_interpreter to reside under functionalities.
llvm-svn: 133918
This commit is contained in:
parent
31f25bc66f
commit
85f21f2029
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := int.cpp
|
||||
|
|
@ -11,7 +11,7 @@ from lldbtest import *
|
|||
class InlinedBreakpointsTestCase(TestBase):
|
||||
"""Bug fixed: rdar://problem/8464339"""
|
||||
|
||||
mydir = "inlined_breakpoints"
|
||||
mydir = os.path.join("functionalities", "breakpoint", "inlined_breakpoints")
|
||||
|
||||
@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
|
||||
|
|
@ -8,7 +8,7 @@ from lldbtest import *
|
|||
|
||||
class ConvenienceVariablesCase(TestBase):
|
||||
|
||||
mydir = "embedded_interpreter"
|
||||
mydir = os.path.join("functionalities", "embedded_interpreter")
|
||||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
def test_with_dsym_and_run_command(self):
|
|
@ -10,7 +10,7 @@ from lldbtest import *
|
|||
|
||||
class LoadUnloadTestCase(TestBase):
|
||||
|
||||
mydir = "load_unload"
|
||||
mydir = os.path.join("functionalities", "load_unload")
|
||||
|
||||
def setUp(self):
|
||||
# Call super's setUp().
|
Loading…
Reference in New Issue