Move to plevel dirs stop-hook, target, process_launch, and signal to reside under functionalities.

Rename target dir to target_command.

llvm-svn: 133951
This commit is contained in:
Johnny Chen 2011-06-27 22:10:42 +00:00
parent eb5a433514
commit 098863c45c
17 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
LEVEL = ../make
LEVEL = ../../make
CXX_SOURCES := main.cpp
#CXX_SOURCES := print-cwd.cpp

View File

@ -9,7 +9,7 @@ from lldbtest import *
class ProcessLaunchTestCase(TestBase):
mydir = "process_launch"
mydir = os.path.join("functionalities", "process_launch")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_io_with_dsym (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 SendSignalTestCase(TestBase):
mydir = "signal"
mydir = os.path.join("functionalities", "signal")
@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 StopHookCmdTestCase(TestBase):
mydir = "stop-hook"
mydir = os.path.join("functionalities", "stop-hook")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):

View File

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

View File

@ -1,4 +1,4 @@
LEVEL = ../make
LEVEL = ../../make
# Example:
#

View File

@ -9,7 +9,7 @@ from lldbtest import *
class targetCommandTestCase(TestBase):
mydir = "target"
mydir = os.path.join("functionalities", "target_command")
def setUp(self):
# Call super's setUp().