summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-10-12 06:13:13 +1100
committerChris Johns <chrisj@rtems.org>2017-10-12 06:13:13 +1100
commitfce29b0c1fdbd9e6386c2c57691363682208eb94 (patch)
tree09f5eeadae3e59fcdb0603567c490d027b20284f
parentrtemstoolkit: Update the mailer module to the option interface. (diff)
downloadrtems-tools-fce29b0c1fdbd9e6386c2c57691363682208eb94.tar.bz2
tester: Change the capture console prompt to avoid email reply processing in clients.
-rw-r--r--tester/rt/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tester/rt/config.py b/tester/rt/config.py
index 9bfb7ae..08f451e 100644
--- a/tester/rt/config.py
+++ b/tester/rt/config.py
@@ -133,7 +133,7 @@ class file(config.file):
return 0
def _capture_console(self, text):
- text = [('>', l) for l in text.replace(chr(13), '').splitlines()]
+ text = [('=>', l) for l in text.replace(chr(13), '').splitlines()]
if self.output is not None:
self._realtime_trace(text)
self.output += text