summaryrefslogtreecommitdiff
path: root/debuginfo-tests/llgdb.py
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2014-10-13 18:04:10 +0000
committerAdrian Prantl <aprantl@apple.com>2014-10-13 18:04:10 +0000
commit193a751bca518bec7ad05bb614125f26ed850aeb (patch)
tree9825a12ed09a777c420970c54523cdb4b250f376 /debuginfo-tests/llgdb.py
parentfa03b1569b9380f2dcf6a061cdfbe32d14a4d273 (diff)
cleanup comments and remove an obsolete workaround
Diffstat (limited to 'debuginfo-tests/llgdb.py')
-rw-r--r--debuginfo-tests/llgdb.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/debuginfo-tests/llgdb.py b/debuginfo-tests/llgdb.py
index 1a7f5d523e3..ce8346259e2 100644
--- a/debuginfo-tests/llgdb.py
+++ b/debuginfo-tests/llgdb.py
@@ -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)