forked from OSchip/llvm-project
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:
parent
eb5a433514
commit
098863c45c
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
#CXX_SOURCES := print-cwd.cpp
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
|
|
@ -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):
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../make
|
||||
|
||||
# Example:
|
||||
#
|
|
@ -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().
|
Loading…
Reference in New Issue