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