[debuginfo-tests] r219623 - cleanup comments and remove an obsolete workaround
Adrian Prantl
aprantl at apple.com
Mon Oct 13 11:04:11 PDT 2014
Author: adrian
Date: Mon Oct 13 13:04:10 2014
New Revision: 219623
URL: http://llvm.org/viewvc/llvm-project?rev=219623&view=rev
Log:
cleanup comments and remove an obsolete workaround
Modified:
debuginfo-tests/trunk/llgdb.py
Modified: debuginfo-tests/trunk/llgdb.py
URL: http://llvm.org/viewvc/llvm-project/debuginfo-tests/trunk/llgdb.py?rev=219623&r1=219622&r2=219623&view=diff
==============================================================================
--- debuginfo-tests/trunk/llgdb.py (original)
+++ debuginfo-tests/trunk/llgdb.py Mon Oct 13 13:04:10 2014
@@ -84,7 +84,6 @@ for command in args.script:
try:
if re.match('^r|(run)$', cmd[0]):
- import time, random; time.sleep(random.randint(0,10))
error = lldb.SBError()
launchinfo = lldb.SBLaunchInfo([])
launchinfo.SetWorkingDirectory(os.getcwd())
@@ -95,10 +94,9 @@ for command in args.script:
print "State = %d" % state
print """
ERROR: Could not launch process.
-NOTE: There are several resons why this may happen:
+NOTE: There are several reasons why this may happen:
* Root needs to run "DevToolsSecurity --enable".
- * We launched ("run") more than one process simultaneously.
- (cf. rdar://problem/14929651)
+ * Older versions of lldb cannot launch more than one process simultaneously.
"""
sys.exit(1)
More information about the llvm-commits
mailing list