diff --git a/ci-scripts/main.py b/ci-scripts/main.py index 51af244530fc79fd58d83a888774ed05742c6a1d..c32eb8d286fad3b38522d2b53dfe9472b1e62f97 100644 --- a/ci-scripts/main.py +++ b/ci-scripts/main.py @@ -1438,7 +1438,7 @@ class SSHConnection(): device_id = status_queue.get() ip_addr = status_queue.get() message = status_queue.get() - html_cell = '<pre>UE (' + device_id + ')\nIP Address : ' + ip_addr + '\n' + message + '</pre>' + html_cell = '<pre style="background-color:white">UE (' + device_id + ')\nIP Address : ' + ip_addr + '\n' + message + '</pre>' html_queue.put(html_cell) if (iperf_noperf and iperf_status): self.CreateHtmlTestRowQueue(self.iperf_args, 'PERF NOT MET', len(self.UEDevices), html_queue) @@ -2020,7 +2020,8 @@ class SSHConnection(): self.htmlFile.write(' <th bgcolor = "red" colspan=' + str(2 + self.htmlUEConnected) + '><font color="white">FAIL</font></th>\n') self.htmlFile.write(' </tr>\n') self.htmlFile.write(' </table>\n') - self.htmlFile.write(' <div class="well well-lg">End of Test Report -- Copyright <span class="glyphicon glyphicon-copyright-mark"></span> 2018 <a href="http://www.openairinterface.org/">OpenAirInterface</a>. All Rights Reserved.</div>\n') + self.htmlFile.write(' <p></p>\n') + self.htmlFile.write(' <div class="well well-lg">End of Test Report -- Copyright <span class="glyphicon glyphicon-copyright-mark"></span> 2018 <a href="http://www.openairinterface.org/">OpenAirInterface</a>. All Rights Reserved.</div>\n') self.htmlFile.write('</div></body>\n') self.htmlFile.write('</html>\n') self.htmlFile.close() diff --git a/ci-scripts/reportBuildLocally.sh b/ci-scripts/reportBuildLocally.sh index c42ecef00bf4a111af38eac55fb046d79ab6eabf..634eac3adc8d61761dfc76ea7c58e93cbd58e285 100755 --- a/ci-scripts/reportBuildLocally.sh +++ b/ci-scripts/reportBuildLocally.sh @@ -543,6 +543,7 @@ function report_build { rm -f ./*_row*.html echo " </div>" >> ./build_results.html + echo " <p></p>" >> ./build_results.html echo " <div class=\"well well-lg\">End of Build Report -- Copyright <span class=\"glyphicon glyphicon-copyright-mark\"></span> 2018 <a href=\"http://www.openairinterface.org/\">OpenAirInterface</a>. All Rights Reserved.</div>" >> ./build_results.html echo "</div></body>" >> ./build_results.html echo "</html>" >> ./build_results.html diff --git a/ci-scripts/reportTestLocally.sh b/ci-scripts/reportTestLocally.sh index 25dce87e46c806ad8ae13bdf7ee19176abea649a..c6fef123d7cbf26b0845ce833db0460249f58eed 100755 --- a/ci-scripts/reportTestLocally.sh +++ b/ci-scripts/reportTestLocally.sh @@ -525,7 +525,8 @@ function report_test { done fi - echo "</div>" >> ./test_simulator_results.html + echo " </div>" >> ./test_simulator_results.html + echo " <p></p>" >> ./test_simulator_results.html echo " <div class=\"well well-lg\">End of Test Report -- Copyright <span class=\"glyphicon glyphicon-copyright-mark\"></span> 2018 <a href=\"http://www.openairinterface.org/\">OpenAirInterface</a>. All Rights Reserved.</div>" >> ./test_simulator_results.html echo "</div></body>" >> ./test_simulator_results.html echo "</html>" >> ./test_simulator_results.html