[Lldb-commits] [lldb] r126516 - /lldb/trunk/test/process_launch/TestProcessIO.py

Johnny Chen johnny.chen at apple.com
Fri Feb 25 13:36:35 PST 2011


Author: johnny
Date: Fri Feb 25 15:36:35 2011
New Revision: 126516

URL: http://llvm.org/viewvc/llvm-project?rev=126516&view=rev
Log:
Renamed the test class to be ProcessLaunchTestCase.

Modified:
    lldb/trunk/test/process_launch/TestProcessIO.py

Modified: lldb/trunk/test/process_launch/TestProcessIO.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/process_launch/TestProcessIO.py?rev=126516&r1=126515&r2=126516&view=diff
==============================================================================
--- lldb/trunk/test/process_launch/TestProcessIO.py (original)
+++ lldb/trunk/test/process_launch/TestProcessIO.py Fri Feb 25 15:36:35 2011
@@ -1,5 +1,5 @@
 """
-Test lldb process IO launch flags..
+Test lldb process launch flags..
 """
 
 import os, time
@@ -7,16 +7,16 @@
 import lldb
 from lldbtest import *
 
-class ProcessLaunchIOTestCase(TestBase):
+class ProcessLaunchTestCase(TestBase):
 
     mydir = "process_launch"
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
-    def test_with_dsym (self):
+    def test_io_with_dsym (self):
         self.buildDsym ()
         self.process_io_test ()
 
-    def test_with_dwarf (self):
+    def test_io_with_dwarf (self):
         self.buildDwarf ()
         self.process_io_test ()
 





More information about the lldb-commits mailing list