Move top level test dirs inlined_breakpoints, load_unload, and embedded_interpreter to reside under functionalities.

llvm-svn: 133918
This commit is contained in:
Johnny Chen 2011-06-27 18:17:24 +00:00
parent 31f25bc66f
commit 85f21f2029
15 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
LEVEL = ../make
LEVEL = ../../../make
CXX_SOURCES := int.cpp

View File

@ -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):

View File

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

View File

@ -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):

View File

@ -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().