summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorFrederic Martinsons <frederic.martinsons@gmail.com>2023-08-17 07:04:16 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-21 16:15:35 +0100
commit37ebe9907ac5639bc200ae50d0d79b14a790ab55 (patch)
treea7b830710e577449b670f382b746a63c50003b2d /meta/lib/oeqa/runtime
parent5116f2b2cf3d00fc2c9f41f8ce3661ed7bb4975e (diff)
downloadpoky-37ebe9907ac5639bc200ae50d0d79b14a790ab55.tar.gz
oeqa/runtime/rust: correct rust test
Since setUp of RustCompileTest use cls.tc.copyTo, those tests needs the scp command: NOTE: ====================================================================== NOTE: FAIL: test_cargo_compile (rust.RustCompileTest) NOTE: ---------------------------------------------------------------------- NOTE: Traceback (most recent call last): File "/home/jenkins/yocto-poky-master/poky/meta/lib/oeqa/core/case.py", line 53, in _oeSetUp self.setUpMethod() File "/home/jenkins/yocto-poky-master/poky/meta/lib/oeqa/runtime/cases/rust.py", line 17, in setUp cls.tc.target.copyTo(src, dst) File "/home/jenkins/yocto-poky-master/poky/meta/lib/oeqa/core/target/ssh.py", line 132, in copyTo return self._run(scpCmd, ignore_status=False) File "/home/jenkins/yocto-poky-master/poky/meta/lib/oeqa/core/target/ssh.py", line 81, in _run raise AssertionError("Command '%s' returned non-zero exit " AssertionError: Command '['scp', '-o', 'ServerAliveCountMax=2', '-o', 'ServerAliveInterval=30', '-o', 'UserKnownHostsFile=/dev/null', '-o', 'StrictHostKeyChecking=no', '-o', 'LogLevel=ERROR', '-r', '-P', '2222', '/home/jenkins/yocto-poky-master/poky/meta/lib/oeqa/files/test.rs', 'root@127.0.0.1:/tmp/']' returned non-zero exit status 1: sh: scp: not found lost connection (From OE-Core rev: 1bf24df9be44c73e5d8e90feb446ecfcd542228c) Signed-off-by: Frederic Martinsons <frederic.martinsons@gmail.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/rust.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/rust.py b/meta/lib/oeqa/runtime/cases/rust.py
index 39707cf5cf..123c942012 100644
--- a/meta/lib/oeqa/runtime/cases/rust.py
+++ b/meta/lib/oeqa/runtime/cases/rust.py
@@ -24,7 +24,8 @@ class RustCompileTest(OERuntimeTestCase):
24 cls.tc.target.run('rm -r %s' % dirs) 24 cls.tc.target.run('rm -r %s' % dirs)
25 25
26 @OETestDepends(['ssh.SSHTest.test_ssh']) 26 @OETestDepends(['ssh.SSHTest.test_ssh'])
27 @OEHasPackage(['rust']) 27 @OEHasPackage('rust')
28 @OEHasPackage('openssh-scp')
28 def test_rust_compile(self): 29 def test_rust_compile(self):
29 status, output = self.target.run('rustc /tmp/test.rs -o /tmp/test') 30 status, output = self.target.run('rustc /tmp/test.rs -o /tmp/test')
30 msg = 'rust compile failed, output: %s' % output 31 msg = 'rust compile failed, output: %s' % output
@@ -35,7 +36,8 @@ class RustCompileTest(OERuntimeTestCase):
35 self.assertEqual(status, 0, msg=msg) 36 self.assertEqual(status, 0, msg=msg)
36 37
37 @OETestDepends(['ssh.SSHTest.test_ssh']) 38 @OETestDepends(['ssh.SSHTest.test_ssh'])
38 @OEHasPackage(['cargo']) 39 @OEHasPackage('cargo')
40 @OEHasPackage('openssh-scp')
39 def test_cargo_compile(self): 41 def test_cargo_compile(self):
40 status, output = self.target.run('cargo new /tmp/hello') 42 status, output = self.target.run('cargo new /tmp/hello')
41 msg = 'cargo new failed, output: %s' % output 43 msg = 'cargo new failed, output: %s' % output