[Lldb-commits] [lldb] r133882 - in /lldb/trunk/test: forward/ function_types/ lang/c/forward/ lang/c/forward/Makefile lang/c/forward/TestForwardDeclaration.py lang/c/function_types/ lang/c/function_types/Makefile lang/c/function_types/TestFunctionTypes.py
Johnny Chen
johnny.chen at apple.com
Sat Jun 25 13:49:06 PDT 2011
Author: johnny
Date: Sat Jun 25 15:49:06 2011
New Revision: 133882
URL: http://llvm.org/viewvc/llvm-project?rev=133882&view=rev
Log:
Move test dirs forward and function_types to now reside under lang/c.
Added:
lldb/trunk/test/lang/c/forward/
- copied from r133875, lldb/trunk/test/forward/
lldb/trunk/test/lang/c/function_types/
- copied from r133875, lldb/trunk/test/function_types/
Removed:
lldb/trunk/test/forward/
lldb/trunk/test/function_types/
Modified:
lldb/trunk/test/lang/c/forward/Makefile
lldb/trunk/test/lang/c/forward/TestForwardDeclaration.py
lldb/trunk/test/lang/c/function_types/Makefile
lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py
Modified: lldb/trunk/test/lang/c/forward/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/forward/Makefile?rev=133882&r1=133875&r2=133882&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/forward/Makefile (original)
+++ lldb/trunk/test/lang/c/forward/Makefile Sat Jun 25 15:49:06 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
C_SOURCES := main.c foo.c
Modified: lldb/trunk/test/lang/c/forward/TestForwardDeclaration.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/forward/TestForwardDeclaration.py?rev=133882&r1=133875&r2=133882&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/forward/TestForwardDeclaration.py (original)
+++ lldb/trunk/test/lang/c/forward/TestForwardDeclaration.py Sat Jun 25 15:49:06 2011
@@ -7,7 +7,7 @@
class ForwardDeclarationTestCase(TestBase):
- mydir = "forward"
+ mydir = os.path.join("lang", "c", "forward")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
Modified: lldb/trunk/test/lang/c/function_types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/function_types/Makefile?rev=133882&r1=133875&r2=133882&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/function_types/Makefile (original)
+++ lldb/trunk/test/lang/c/function_types/Makefile Sat Jun 25 15:49:06 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
C_SOURCES := main.c
Modified: lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py?rev=133882&r1=133875&r2=133882&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py (original)
+++ lldb/trunk/test/lang/c/function_types/TestFunctionTypes.py Sat Jun 25 15:49:06 2011
@@ -7,7 +7,7 @@
class FunctionTypesTestCase(TestBase):
- mydir = "function_types"
+ mydir = os.path.join("lang", "c", "function_types")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):
More information about the lldb-commits
mailing list