[Lldb-commits] [lldb] r133918 - in /lldb/trunk/test: embedded_interpreter/ functionalities/breakpoint/inlined_breakpoints/ functionalities/breakpoint/inlined_breakpoints/Makefile functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py functionalities/embedded_interpreter/ functionalities/embedded_interpreter/Makefile functionalities/embedded_interpreter/TestConvenienceVariables.py functionalities/load_unload/ functionalities/load_unload/TestLoadUnload.py inlined_breakpoints/ load_unload/
Johnny Chen
johnny.chen at apple.com
Mon Jun 27 11:17:24 PDT 2011
Author: johnny
Date: Mon Jun 27 13:17:24 2011
New Revision: 133918
URL: http://llvm.org/viewvc/llvm-project?rev=133918&view=rev
Log:
Move top level test dirs inlined_breakpoints, load_unload, and embedded_interpreter to reside under functionalities.
Added:
lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/
- copied from r133916, lldb/trunk/test/inlined_breakpoints/
lldb/trunk/test/functionalities/embedded_interpreter/
- copied from r133916, lldb/trunk/test/embedded_interpreter/
lldb/trunk/test/functionalities/load_unload/
- copied from r133916, lldb/trunk/test/load_unload/
Removed:
lldb/trunk/test/embedded_interpreter/
lldb/trunk/test/inlined_breakpoints/
lldb/trunk/test/load_unload/
Modified:
lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/Makefile
lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
lldb/trunk/test/functionalities/embedded_interpreter/Makefile
lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py
lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py
Modified: lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/Makefile?rev=133918&r1=133916&r2=133918&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/Makefile (original)
+++ lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/Makefile Mon Jun 27 13:17:24 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
CXX_SOURCES := int.cpp
Modified: lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py?rev=133918&r1=133916&r2=133918&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py Mon Jun 27 13:17:24 2011
@@ -11,7 +11,7 @@
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):
Modified: lldb/trunk/test/functionalities/embedded_interpreter/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/embedded_interpreter/Makefile?rev=133918&r1=133916&r2=133918&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/embedded_interpreter/Makefile (original)
+++ lldb/trunk/test/functionalities/embedded_interpreter/Makefile Mon Jun 27 13:17:24 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../make
C_SOURCES := main.c
Modified: lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py?rev=133918&r1=133916&r2=133918&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py (original)
+++ lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py Mon Jun 27 13:17:24 2011
@@ -8,7 +8,7 @@
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):
Modified: lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py?rev=133918&r1=133916&r2=133918&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py (original)
+++ lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py Mon Jun 27 13:17:24 2011
@@ -10,7 +10,7 @@
class LoadUnloadTestCase(TestBase):
- mydir = "load_unload"
+ mydir = os.path.join("functionalities", "load_unload")
def setUp(self):
# Call super's setUp().
More information about the lldb-commits
mailing list