summaryrefslogtreecommitdiff
path: root/test/crossrunner
diff options
context:
space:
mode:
authorGonzalo Aguilar Delgado <gaguilar@level2crm.com>2016-03-04 13:16:22 +0100
committerJames E. King, III <jking@apache.org>2017-02-20 14:04:17 -0500
commitbc0082e02357de2f30b997188bdfa94d703331f4 (patch)
tree1bc7181d78892d45ae93d12d3288694aeadd5463 /test/crossrunner
parent06190874c8ba8f3a0c7ae83a59965d56c205e080 (diff)
downloadthrift-bc0082e02357de2f30b997188bdfa94d703331f4.tar.gz
THRIFT-3706: Implement multiplexed protocol client and test client for c_glib; test server for java; integrate into crosstest
Client: c_glib This closes #1191 This closes #1199
Diffstat (limited to 'test/crossrunner')
-rw-r--r--test/crossrunner/report.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/crossrunner/report.py b/test/crossrunner/report.py
index cc5f26fe2..26f7d9e99 100644
--- a/test/crossrunner/report.py
+++ b/test/crossrunner/report.py
@@ -104,7 +104,7 @@ class TestReporter(object):
def _print_bar(self, out=None):
print(
- '==========================================================================',
+ '===============================================================================',
file=(out or self.out))
def _print_exec_time(self):
@@ -259,14 +259,14 @@ class SummaryReporter(TestReporter):
name = '%s-%s' % (test.server.name, test.client.name)
trans = '%s-%s' % (test.transport, test.socket)
if not with_result:
- return '{:24s}{:13s}{:25s}'.format(name[:23], test.protocol[:12], trans[:24])
+ return '{:24s}{:18s}{:25s}'.format(name[:23], test.protocol[:17], trans[:24])
else:
- return '{:24s}{:13s}{:25s}{:s}\n'.format(name[:23], test.protocol[:12], trans[:24], self._result_string(test))
+ return '{:24s}{:18s}{:25s}{:s}\n'.format(name[:23], test.protocol[:17], trans[:24], self._result_string(test))
def _print_test_header(self):
self._print_bar()
print(
- '{:24s}{:13s}{:25s}{:s}'.format('server-client:', 'protocol:', 'transport:', 'result:'),
+ '{:24s}{:18s}{:25s}{:s}'.format('server-client:', 'protocol:', 'transport:', 'result:'),
file=self.out)
def _print_header(self):