diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-06-27 22:10:42 +0000 | 
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-06-27 22:10:42 +0000 | 
| commit | 098863c45c4ab593e201d21f3726a0d7dd0c96c5 (patch) | |
| tree | 8ceebf21f825620fa0b6bedd8a5f0c71315ba111 | |
| parent | eb5a433514cbe59854fe532254707832bda5aadf (diff) | |
| download | bcm5719-llvm-098863c45c4ab593e201d21f3726a0d7dd0c96c5.tar.gz bcm5719-llvm-098863c45c4ab593e201d21f3726a0d7dd0c96c5.zip  | |
Move to plevel dirs stop-hook, target, process_launch, and signal to reside under functionalities.
Rename target dir to target_command.
llvm-svn: 133951
| -rw-r--r-- | lldb/test/functionalities/process_launch/Makefile (renamed from lldb/test/process_launch/Makefile) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/process_launch/TestProcessLaunch.py (renamed from lldb/test/process_launch/TestProcessLaunch.py) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/process_launch/input-file.txt (renamed from lldb/test/process_launch/input-file.txt) | 0 | ||||
| -rw-r--r-- | lldb/test/functionalities/process_launch/main.cpp (renamed from lldb/test/process_launch/main.cpp) | 0 | ||||
| -rw-r--r-- | lldb/test/functionalities/process_launch/print_cwd.cpp (renamed from lldb/test/process_launch/print_cwd.cpp) | 0 | ||||
| -rw-r--r-- | lldb/test/functionalities/signal/Makefile (renamed from lldb/test/signal/Makefile) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/signal/TestSendSignal.py (renamed from lldb/test/signal/TestSendSignal.py) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/signal/main.c (renamed from lldb/test/signal/main.c) | 0 | ||||
| -rw-r--r-- | lldb/test/functionalities/stop-hook/Makefile (renamed from lldb/test/stop-hook/Makefile) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/stop-hook/TestStopHookCmd.py (renamed from lldb/test/stop-hook/TestStopHookCmd.py) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/stop-hook/TestStopHookMechanism.py (renamed from lldb/test/stop-hook/TestStopHookMechanism.py) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/stop-hook/main.cpp (renamed from lldb/test/stop-hook/main.cpp) | 0 | ||||
| -rw-r--r-- | lldb/test/functionalities/target_command/Makefile (renamed from lldb/test/target/Makefile) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/target_command/TestTargetCommand.py (renamed from lldb/test/target/TestTargetCommand.py) | 2 | ||||
| -rw-r--r-- | lldb/test/functionalities/target_command/a.c (renamed from lldb/test/target/a.c) | 0 | ||||
| -rw-r--r-- | lldb/test/functionalities/target_command/b.c (renamed from lldb/test/target/b.c) | 0 | ||||
| -rw-r--r-- | lldb/test/functionalities/target_command/c.c (renamed from lldb/test/target/c.c) | 0 | 
17 files changed, 9 insertions, 9 deletions
diff --git a/lldb/test/process_launch/Makefile b/lldb/test/functionalities/process_launch/Makefile index 95bf9faedbc..313da706b4a 100644 --- a/lldb/test/process_launch/Makefile +++ b/lldb/test/functionalities/process_launch/Makefile @@ -1,4 +1,4 @@ -LEVEL = ../make +LEVEL = ../../make  CXX_SOURCES := main.cpp  #CXX_SOURCES := print-cwd.cpp diff --git a/lldb/test/process_launch/TestProcessLaunch.py b/lldb/test/functionalities/process_launch/TestProcessLaunch.py index e548bdc46c9..8135c11698d 100644 --- a/lldb/test/process_launch/TestProcessLaunch.py +++ b/lldb/test/functionalities/process_launch/TestProcessLaunch.py @@ -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): diff --git a/lldb/test/process_launch/input-file.txt b/lldb/test/functionalities/process_launch/input-file.txt index cc269ba0ff8..cc269ba0ff8 100644 --- a/lldb/test/process_launch/input-file.txt +++ b/lldb/test/functionalities/process_launch/input-file.txt diff --git a/lldb/test/process_launch/main.cpp b/lldb/test/functionalities/process_launch/main.cpp index f2035d55167..f2035d55167 100644 --- a/lldb/test/process_launch/main.cpp +++ b/lldb/test/functionalities/process_launch/main.cpp diff --git a/lldb/test/process_launch/print_cwd.cpp b/lldb/test/functionalities/process_launch/print_cwd.cpp index 2e88e350438..2e88e350438 100644 --- a/lldb/test/process_launch/print_cwd.cpp +++ b/lldb/test/functionalities/process_launch/print_cwd.cpp diff --git a/lldb/test/signal/Makefile b/lldb/test/functionalities/signal/Makefile index d6cd0db0506..0d70f259501 100644 --- a/lldb/test/signal/Makefile +++ b/lldb/test/functionalities/signal/Makefile @@ -1,4 +1,4 @@ -LEVEL = ../make +LEVEL = ../../make  C_SOURCES := main.c diff --git a/lldb/test/signal/TestSendSignal.py b/lldb/test/functionalities/signal/TestSendSignal.py index afd0247ec00..d470dff5f5c 100644 --- a/lldb/test/signal/TestSendSignal.py +++ b/lldb/test/functionalities/signal/TestSendSignal.py @@ -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): diff --git a/lldb/test/signal/main.c b/lldb/test/functionalities/signal/main.c index f9e6c501954..f9e6c501954 100644 --- a/lldb/test/signal/main.c +++ b/lldb/test/functionalities/signal/main.c diff --git a/lldb/test/stop-hook/Makefile b/lldb/test/functionalities/stop-hook/Makefile index d4bc9c68904..8a7102e347a 100644 --- a/lldb/test/stop-hook/Makefile +++ b/lldb/test/functionalities/stop-hook/Makefile @@ -1,4 +1,4 @@ -LEVEL = ../make +LEVEL = ../../make  CXX_SOURCES := main.cpp diff --git a/lldb/test/stop-hook/TestStopHookCmd.py b/lldb/test/functionalities/stop-hook/TestStopHookCmd.py index 78ad38e8459..1e5d48ed4e1 100644 --- a/lldb/test/stop-hook/TestStopHookCmd.py +++ b/lldb/test/functionalities/stop-hook/TestStopHookCmd.py @@ -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): diff --git a/lldb/test/stop-hook/TestStopHookMechanism.py b/lldb/test/functionalities/stop-hook/TestStopHookMechanism.py index fbff37f193b..c9639ea0fc8 100644 --- a/lldb/test/stop-hook/TestStopHookMechanism.py +++ b/lldb/test/functionalities/stop-hook/TestStopHookMechanism.py @@ -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): diff --git a/lldb/test/stop-hook/main.cpp b/lldb/test/functionalities/stop-hook/main.cpp index ee68c34feb8..ee68c34feb8 100644 --- a/lldb/test/stop-hook/main.cpp +++ b/lldb/test/functionalities/stop-hook/main.cpp diff --git a/lldb/test/target/Makefile b/lldb/test/functionalities/target_command/Makefile index e4b33e52e32..9117ab9388b 100644 --- a/lldb/test/target/Makefile +++ b/lldb/test/functionalities/target_command/Makefile @@ -1,4 +1,4 @@ -LEVEL = ../make +LEVEL = ../../make  # Example:  # diff --git a/lldb/test/target/TestTargetCommand.py b/lldb/test/functionalities/target_command/TestTargetCommand.py index 59afb12aa3c..eeb11f136b4 100644 --- a/lldb/test/target/TestTargetCommand.py +++ b/lldb/test/functionalities/target_command/TestTargetCommand.py @@ -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(). diff --git a/lldb/test/target/a.c b/lldb/test/functionalities/target_command/a.c index 9d0706a0862..9d0706a0862 100644 --- a/lldb/test/target/a.c +++ b/lldb/test/functionalities/target_command/a.c diff --git a/lldb/test/target/b.c b/lldb/test/functionalities/target_command/b.c index 62ec97f4328..62ec97f4328 100644 --- a/lldb/test/target/b.c +++ b/lldb/test/functionalities/target_command/b.c diff --git a/lldb/test/target/c.c b/lldb/test/functionalities/target_command/c.c index 7c362cc437a..7c362cc437a 100644 --- a/lldb/test/target/c.c +++ b/lldb/test/functionalities/target_command/c.c  | 

