[Lldb-commits] [lldb] r133892 - in /lldb/trunk/test: abbreviation_tests/ alias_tests/ breakpoint_command/ breakpoint_conditions/ breakpoint_ids/ breakpoint_ignore_count/ breakpoint_locations/ functionalities/abbreviation_tests/ functionalities/alias_tests/ functionalities/breakpoint/ functionalities/breakpoint/breakpoint_command/ functionalities/breakpoint/breakpoint_conditions/ functionalities/breakpoint/breakpoint_ids/ functionalities/breakpoint/breakpoint_ignore_count/ functionalities/breakpoint/breakpoint_locations/

Johnny Chen johnny.chen at apple.com
Sun Jun 26 14:24:46 PDT 2011


Author: johnny
Date: Sun Jun 26 16:24:46 2011
New Revision: 133892

URL: http://llvm.org/viewvc/llvm-project?rev=133892&view=rev
Log:
Move some top level directories to reside under functionalities dir.

Added:
    lldb/trunk/test/functionalities/abbreviation_tests/
      - copied from r133889, lldb/trunk/test/abbreviation_tests/
    lldb/trunk/test/functionalities/alias_tests/
      - copied from r133889, lldb/trunk/test/alias_tests/
    lldb/trunk/test/functionalities/breakpoint/
    lldb/trunk/test/functionalities/breakpoint/breakpoint_command/
      - copied from r133889, lldb/trunk/test/breakpoint_command/
    lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/
      - copied from r133889, lldb/trunk/test/breakpoint_conditions/
    lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/
      - copied from r133889, lldb/trunk/test/breakpoint_ids/
    lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/
      - copied from r133889, lldb/trunk/test/breakpoint_ignore_count/
    lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/
      - copied from r133889, lldb/trunk/test/breakpoint_locations/
Removed:
    lldb/trunk/test/abbreviation_tests/
    lldb/trunk/test/alias_tests/
    lldb/trunk/test/breakpoint_command/
    lldb/trunk/test/breakpoint_conditions/
    lldb/trunk/test/breakpoint_ids/
    lldb/trunk/test/breakpoint_ignore_count/
    lldb/trunk/test/breakpoint_locations/
Modified:
    lldb/trunk/test/functionalities/abbreviation_tests/Makefile
    lldb/trunk/test/functionalities/abbreviation_tests/TestAbbreviations.py
    lldb/trunk/test/functionalities/alias_tests/Makefile
    lldb/trunk/test/functionalities/alias_tests/TestAliases.py
    lldb/trunk/test/functionalities/breakpoint/breakpoint_command/Makefile
    lldb/trunk/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
    lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/Makefile
    lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
    lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/Makefile
    lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
    lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile
    lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
    lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/Makefile
    lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py

Modified: lldb/trunk/test/functionalities/abbreviation_tests/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/abbreviation_tests/Makefile?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/abbreviation_tests/Makefile (original)
+++ lldb/trunk/test/functionalities/abbreviation_tests/Makefile Sun Jun 26 16:24:46 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../make
 
 CXX_SOURCES := main.cpp
 

Modified: lldb/trunk/test/functionalities/abbreviation_tests/TestAbbreviations.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/abbreviation_tests/TestAbbreviations.py?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/abbreviation_tests/TestAbbreviations.py (original)
+++ lldb/trunk/test/functionalities/abbreviation_tests/TestAbbreviations.py Sun Jun 26 16:24:46 2011
@@ -9,7 +9,7 @@
 
 class AbbreviationsTestCase(TestBase):
     
-    mydir = "abbreviation_tests"
+    mydir = os.path.join("functionalities", "abbreviation_tests")
 
     def test_nonrunning_command_abbreviations (self):
         self.expect("ap script",

Modified: lldb/trunk/test/functionalities/alias_tests/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/alias_tests/Makefile?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/alias_tests/Makefile (original)
+++ lldb/trunk/test/functionalities/alias_tests/Makefile Sun Jun 26 16:24:46 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../make
 
 CXX_SOURCES := main.cpp
 

Modified: lldb/trunk/test/functionalities/alias_tests/TestAliases.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/alias_tests/TestAliases.py?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/alias_tests/TestAliases.py (original)
+++ lldb/trunk/test/functionalities/alias_tests/TestAliases.py Sun Jun 26 16:24:46 2011
@@ -9,7 +9,7 @@
 
 class AliasTestCase(TestBase):
 
-    mydir = "alias_tests"
+    mydir = os.path.join("functionalities", "alias_tests")
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym (self):

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_command/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_command/Makefile?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_command/Makefile (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_command/Makefile Sun Jun 26 16:24:46 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
 
 C_SOURCES := main.c
 

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py Sun Jun 26 16:24:46 2011
@@ -9,7 +9,7 @@
 
 class BreakpointCommandTestCase(TestBase):
 
-    mydir = "breakpoint_command"
+    mydir = os.path.join("functionalities", "breakpoint", "breakpoint_command")
 
     @classmethod
     def classCleanup(cls):

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/Makefile?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/Makefile (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/Makefile Sun Jun 26 16:24:46 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
 
 C_SOURCES := main.c
 

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py Sun Jun 26 16:24:46 2011
@@ -10,7 +10,7 @@
 
 class BreakpointConditionsTestCase(TestBase):
 
-    mydir = "breakpoint_conditions"
+    mydir = os.path.join("functionalities", "breakpoint", "breakpoint_conditions")
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym_and_run_command(self):

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/Makefile?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/Makefile (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/Makefile Sun Jun 26 16:24:46 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
 

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py Sun Jun 26 16:24:46 2011
@@ -9,7 +9,7 @@
 
 class BreakpointIDTestCase(TestBase):
 
-    mydir = "breakpoint_ids"
+    mydir = os.path.join("functionalities", "breakpoint", "breakpoint_ids")
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym (self):

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile Sun Jun 26 16:24:46 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
 
 C_SOURCES := main.c
 

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py Sun Jun 26 16:24:46 2011
@@ -10,7 +10,7 @@
 
 class BreakpointIgnoreCountTestCase(TestBase):
 
-    mydir = "breakpoint_ignore_count"
+    mydir = os.path.join("functionalities", "breakpoint", "breakpoint_ignore_count")
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym_and_run_command(self):

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/Makefile?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/Makefile (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/Makefile Sun Jun 26 16:24:46 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
 
 C_SOURCES := main.c
 

Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py?rev=133892&r1=133889&r2=133892&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py Sun Jun 26 16:24:46 2011
@@ -9,7 +9,7 @@
 
 class BreakpointLocationsTestCase(TestBase):
 
-    mydir = "breakpoint_locations"
+    mydir = os.path.join("functionalities", "breakpoint", "breakpoint_locations")
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym(self):





More information about the lldb-commits mailing list