[Lldb-commits] [lldb] r127025 - /lldb/trunk/test/process_launch/TestProcessLaunch.py
Johnny Chen
johnny.chen at apple.com
Fri Mar 4 11:47:52 PST 2011
Author: johnny
Date: Fri Mar 4 13:47:52 2011
New Revision: 127025
URL: http://llvm.org/viewvc/llvm-project?rev=127025&view=rev
Log:
Add docstrings for unittest framework's test methods.
Modified:
lldb/trunk/test/process_launch/TestProcessLaunch.py
Modified: lldb/trunk/test/process_launch/TestProcessLaunch.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/process_launch/TestProcessLaunch.py?rev=127025&r1=127024&r2=127025&view=diff
==============================================================================
--- lldb/trunk/test/process_launch/TestProcessLaunch.py (original)
+++ lldb/trunk/test/process_launch/TestProcessLaunch.py Fri Mar 4 13:47:52 2011
@@ -13,10 +13,12 @@
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_io_with_dsym (self):
+ """Test that process launch I/O redirection flags work properly."""
self.buildDsym ()
self.process_io_test ()
def test_io_with_dwarf (self):
+ """Test that process launch I/O redirection flags work properly."""
self.buildDwarf ()
self.process_io_test ()
@@ -100,11 +102,13 @@
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_set_working_dir_with_dsym (self):
+ """Test that '-w dir' sets the working dir when running the inferior."""
self.buildDsym(dictionary=self.d)
self.setTearDownCleanup(self.d)
self.my_working_dir_test()
def test_set_working_dir_with_dwarf (self):
+ """Test that '-w dir' sets the working dir when running the inferior."""
self.buildDwarf(dictionary=self.d)
self.setTearDownCleanup(self.d)
self.my_working_dir_test()
More information about the lldb-commits
mailing list