[Lldb-commits] [lldb] r133878 - in /lldb/trunk/test: cpp/ lang/cpp/ lang/cpp/dynamic-value/Makefile lang/cpp/dynamic-value/TestDynamicValue.py lang/cpp/virtual/Makefile lang/cpp/virtual/TestVirtual.py

Johnny Chen johnny.chen at apple.com
Sat Jun 25 13:19:47 PDT 2011


Author: johnny
Date: Sat Jun 25 15:19:47 2011
New Revision: 133878

URL: http://llvm.org/viewvc/llvm-project?rev=133878&view=rev
Log:
Move C++-related test directories to now reside under lang.

Added:
    lldb/trunk/test/lang/cpp/
      - copied from r133875, lldb/trunk/test/cpp/
Removed:
    lldb/trunk/test/cpp/
Modified:
    lldb/trunk/test/lang/cpp/dynamic-value/Makefile
    lldb/trunk/test/lang/cpp/dynamic-value/TestDynamicValue.py
    lldb/trunk/test/lang/cpp/virtual/Makefile
    lldb/trunk/test/lang/cpp/virtual/TestVirtual.py

Modified: lldb/trunk/test/lang/cpp/dynamic-value/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/dynamic-value/Makefile?rev=133878&r1=133875&r2=133878&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/dynamic-value/Makefile (original)
+++ lldb/trunk/test/lang/cpp/dynamic-value/Makefile Sat Jun 25 15:19:47 2011
@@ -1,4 +1,4 @@
-LEVEL = ../../make
+LEVEL = ../../../make
 
 CXX_SOURCES := pass-to-base.cpp
 

Modified: lldb/trunk/test/lang/cpp/dynamic-value/TestDynamicValue.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/dynamic-value/TestDynamicValue.py?rev=133878&r1=133875&r2=133878&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/dynamic-value/TestDynamicValue.py (original)
+++ lldb/trunk/test/lang/cpp/dynamic-value/TestDynamicValue.py Sat Jun 25 15:19:47 2011
@@ -10,7 +10,7 @@
 
 class DynamicValueTestCase(TestBase):
 
-    mydir = os.path.join("cpp", "dynamic-value")
+    mydir = os.path.join("lang", "cpp", "dynamic-value")
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @python_api_test

Modified: lldb/trunk/test/lang/cpp/virtual/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/virtual/Makefile?rev=133878&r1=133875&r2=133878&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/virtual/Makefile (original)
+++ lldb/trunk/test/lang/cpp/virtual/Makefile Sat Jun 25 15:19:47 2011
@@ -1,4 +1,4 @@
-LEVEL = ../../make
+LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
 

Modified: lldb/trunk/test/lang/cpp/virtual/TestVirtual.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/virtual/TestVirtual.py?rev=133878&r1=133875&r2=133878&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/virtual/TestVirtual.py (original)
+++ lldb/trunk/test/lang/cpp/virtual/TestVirtual.py Sat Jun 25 15:19:47 2011
@@ -12,7 +12,7 @@
 
 class CppVirtualMadness(TestBase):
 
-    mydir = os.path.join("cpp", "virtual")
+    mydir = os.path.join("lang", "cpp", "virtual")
 
     # This is the pattern by design to match the "my_expr = 'value'" output from
     # printf() stmts (see main.cpp).





More information about the lldb-commits mailing list