Merge pull request #3923 from adelez/add_interop_report

Add an indicator for server and client languages.
pull/3926/head
Jan Tattermusch 9 years ago
commit def77a5235
  1. 5
      tools/run_tests/run_interop_tests.py

@ -529,7 +529,7 @@ def render_html_report(client_langs, server_langs, resultset,
html_str = ('%s<h2>Cloud to Prod</h2>\n'
'<table style=\"width:100%%\" border=\"1\">\n'
'<tr bgcolor=\"#00BFFF\">\n'
'<th/>\n') % html_str
'<th>Client languages &#9658;</th>\n') % html_str
for client_lang in sorted_client_langs:
html_str = '%s<th>%s\n' % (html_str, client_lang)
html_str = '%s</tr>\n' % html_str
@ -549,7 +549,8 @@ def render_html_report(client_langs, server_langs, resultset,
html_str = ('%s<h2>%s</h2>\n'
'<table style=\"width:100%%\" border=\"1\">\n'
'<tr bgcolor=\"#00BFFF\">\n'
'<th/>\n') % (html_str, test_case)
'<th>Client languages &#9658;<br/>'
'Server languages &#9660;</th>\n') % (html_str, test_case)
for client_lang in sorted_client_langs:
html_str = '%s<th>%s\n' % (html_str, client_lang)
html_str = '%s</tr>\n' % html_str

Loading…
Cancel
Save