From 9e1585e6cda9e046d123ad4d6f6902fccab663f0 Mon Sep 17 00:00:00 2001 From: Sakala Venkata Krishna Rohit Date: Thu, 6 Jul 2017 15:39:06 +0530 Subject: [PATCH] Bugfix for failure of reporting verify job Prefer to run unit tests from the directory in which unit test script is present as errors are being raised if it is being run from other directories. Change-Id: Ifa2000ac333f2e985feeae76c0040a1831f60253 Signed-off-by: Sakala Venkata Krishna Rohit --- jjb/releng/automate.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jjb/releng/automate.yml b/jjb/releng/automate.yml index 4bea7032c..cca4f5e6b 100644 --- a/jjb/releng/automate.yml +++ b/jjb/releng/automate.yml @@ -82,7 +82,8 @@ builders: - shell: | - bash ./utils/test/{module}/run_test.sh + cd ./utils/test/{module}/ + bash run_test.sh publishers: - junit: -- 2.16.6