aboutsummaryrefslogtreecommitdiff
path: root/debug/testlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug/testlib.py')
-rw-r--r--debug/testlib.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/debug/testlib.py b/debug/testlib.py
index d6044f5..99c4a76 100644
--- a/debug/testlib.py
+++ b/debug/testlib.py
@@ -103,7 +103,6 @@ class VcsSim(object):
done = True
def __del__(self):
- print "DELETE called for VcsSim"
try:
self.process.kill()
self.process.wait()
@@ -112,12 +111,12 @@ class VcsSim(object):
class Openocd(object):
- def __init__(self, cmd=None, config=None, debug=False, keepAlive=None):
+ def __init__(self, cmd=None, config=None, debug=False, otherProcess=None):
# keep handles to other processes -- don't let them be
# garbage collected yet.
- self.keepAlive = keepAlive
+ self.otherProcess = otherProcess
if cmd:
cmd = shlex.split(cmd)
else: