[Lldb-commits] [lldb] r181069 - Fixed a test suite typo error that caused the test to fail.
Greg Clayton
gclayton at apple.com
Fri May 3 16:04:47 PDT 2013
Author: gclayton
Date: Fri May 3 18:04:47 2013
New Revision: 181069
URL: http://llvm.org/viewvc/llvm-project?rev=181069&view=rev
Log:
Fixed a test suite typo error that caused the test to fail.
Modified:
lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py
Modified: lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py?rev=181069&r1=181068&r2=181069&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py (original)
+++ lldb/trunk/test/functionalities/process_attach/TestProcessAttach.py Fri May 3 18:04:47 2013
@@ -76,7 +76,7 @@ class ProcessAttachTestCase(TestBase):
self.runCmd("process attach -n a.out")
- proces = target.GetProcess()
+ process = target.GetProcess()
self.assertTrue(process, PROCESS_IS_VALID)
More information about the lldb-commits
mailing list