aboutsummaryrefslogtreecommitdiff
path: root/debuginfo-tests
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
commit17a00110826da801c32df078432ab442a6c1bd89 (patch)
tree3b478ab752945d4ba51e060c1f081c5f73f49a8a /debuginfo-tests
parent2009960ea33759a1848ade83640896db27a7382b (diff)
cleanup comments and remove an obsolete workaround
llvm-svn: 219623
Diffstat (limited to 'debuginfo-tests')
-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 1a7f5d523e35..ce8346259e24 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)