add output logging to systest_run 77/5977/1
authorMike Marchetti <mmarchetti@sandvine.com>
Mon, 16 Apr 2018 17:57:12 +0000 (13:57 -0400)
committerMike Marchetti <mmarchetti@sandvine.com>
Mon, 16 Apr 2018 17:57:12 +0000 (13:57 -0400)
Change-Id: Ie7e28d3a71763aca75283d309f6fa3fb74af470f
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
jenkins/ci-pipelines/ci_helper.groovy

index 9708b1c..94e1b70 100644 (file)
@@ -79,7 +79,8 @@ def systest_run(container_name, test, source_rc = null) {
     }
     else
     {
-        lxc_run(container_name, "make -C devops/systest OSM_HOSTNAME=${so_ip} OSM_RO_HOSTNAME=${ro_ip} ${test}")
+        result = lxc_run(container_name, "make -C devops/systest OSM_HOSTNAME=${so_ip} OSM_RO_HOSTNAME=${ro_ip} ${test}")
+        echo result
     }
     lxc_get_file(container_name, "/root/devops/systest/reports/pytest-${test}.xml",'.')
 }