[Lldb-commits] [lldb] r133890 - in /lldb/trunk/test: hello_world/ python_api/hello_world/ python_api/hello_world/Makefile python_api/hello_world/TestHelloWorld.py

Johnny Chen johnny.chen at apple.com
Sun Jun 26 13:59:36 PDT 2011


Author: johnny
Date: Sun Jun 26 15:59:36 2011
New Revision: 133890

URL: http://llvm.org/viewvc/llvm-project?rev=133890&view=rev
Log:
Move hello_world to now reside under python_api dir.

Added:
    lldb/trunk/test/python_api/hello_world/
      - copied from r133875, lldb/trunk/test/hello_world/
    lldb/trunk/test/python_api/hello_world/TestHelloWorld.py
      - copied, changed from r133889, lldb/trunk/test/hello_world/TestHelloWorld.py
Removed:
    lldb/trunk/test/hello_world/
Modified:
    lldb/trunk/test/python_api/hello_world/Makefile

Modified: lldb/trunk/test/python_api/hello_world/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/hello_world/Makefile?rev=133890&r1=133875&r2=133890&view=diff
==============================================================================
--- lldb/trunk/test/python_api/hello_world/Makefile (original)
+++ lldb/trunk/test/python_api/hello_world/Makefile Sun Jun 26 15:59:36 2011
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../make
 
 C_SOURCES := main.c
 EXE := hello_world

Copied: lldb/trunk/test/python_api/hello_world/TestHelloWorld.py (from r133889, lldb/trunk/test/hello_world/TestHelloWorld.py)
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/hello_world/TestHelloWorld.py?p2=lldb/trunk/test/python_api/hello_world/TestHelloWorld.py&p1=lldb/trunk/test/hello_world/TestHelloWorld.py&r1=133889&r2=133890&rev=133890&view=diff
==============================================================================
--- lldb/trunk/test/hello_world/TestHelloWorld.py (original)
+++ lldb/trunk/test/python_api/hello_world/TestHelloWorld.py Sun Jun 26 15:59:36 2011
@@ -7,7 +7,7 @@
 
 class HelloWorldTestCase(TestBase):
 
-    mydir = "hello_world"
+    mydir = os.path.join("python_api", "hello_world")
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @python_api_test





More information about the lldb-commits mailing list