summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorMatthew <matthew.zeng@windriver.com>2020-08-05 14:51:33 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-12 10:53:46 +0100
commit481c27a227cf4f44a22017645d558c36a5219cea (patch)
tree3092948b478ae8263331f83da2afcd5bd2a574a4 /meta/lib/oeqa/runtime
parenta93c7cd0ba1436476fff8cae8e9eecb1a5cae938 (diff)
downloadpoky-481c27a227cf4f44a22017645d558c36a5219cea.tar.gz
ltp: make copyFrom scp command non-fatal
[YOCTO #13802] Make the scp failure non-fatal so the ltp tests continue to run and the rest of the logs will be available to see afterwards. (From OE-Core rev: 9390846e2abdd6837094a619ba4703a1be4a04cf) Signed-off-by: Mingde (Matthew) Zeng <matthew.zeng@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 0f7d093038274f4f21f6cca39a96aac4f6c32ee3) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/cases/ltp.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ltp.py b/meta/lib/oeqa/runtime/cases/ltp.py
index 6dc5ef22ad..a66d5d13d7 100644
--- a/meta/lib/oeqa/runtime/cases/ltp.py
+++ b/meta/lib/oeqa/runtime/cases/ltp.py
@@ -78,9 +78,10 @@ class LtpTest(LtpTestBase):
78 # copy nice log from DUT 78 # copy nice log from DUT
79 dst = os.path.join(self.ltptest_log_dir, "%s" % ltp_group ) 79 dst = os.path.join(self.ltptest_log_dir, "%s" % ltp_group )
80 remote_src = "/opt/ltp/results/%s" % ltp_group 80 remote_src = "/opt/ltp/results/%s" % ltp_group
81 (status, output) = self.target.copyFrom(remote_src, dst) 81 (status, output) = self.target.copyFrom(remote_src, dst, True)
82 msg = 'File could not be copied. Output: %s' % output 82 msg = 'File could not be copied. Output: %s' % output
83 self.assertEqual(status, 0, msg=msg) 83 if status:
84 self.target.logger.warning(msg)
84 85
85 parser = LtpParser() 86 parser = LtpParser()
86 results, sections = parser.parse(dst) 87 results, sections = parser.parse(dst)