summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-06-24 14:12:10 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-06-25 21:13:40 +0100
commitbbdda8321d06358dff3386030d778c8d19b850ec (patch)
tree599bd8f6735d206e07ab13695551a8920dbd8ddf
parentf23474acfa5c603c04ded5f5f5b7e0b200b33e09 (diff)
downloadpoky-bbdda8321d06358dff3386030d778c8d19b850ec.tar.gz
oeqa/runtime/scp: Disable scp test for dropbear
Fedora is switching to use sftp as the backend for scp. This means the scp test fails on Fedora 36 hosts with a dropbear target as dropbear doesn't support sftp. This change is in the upstream openssh code, other distros have not yet changed the default but probably will follow. The easiest way to resolve test failures in dropbear images is to stop testing this against dropbear as it is no longer expected to work and will likely spread as the change filters through other distros. (From OE-Core rev: a71fc7d455400f406b0d607be712a1133fe91166) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/runtime/cases/scp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/scp.py b/meta/lib/oeqa/runtime/cases/scp.py
index 3a5f292152..f2bbc947d6 100644
--- a/meta/lib/oeqa/runtime/cases/scp.py
+++ b/meta/lib/oeqa/runtime/cases/scp.py
@@ -23,7 +23,7 @@ class ScpTest(OERuntimeTestCase):
23 os.remove(cls.tmp_path) 23 os.remove(cls.tmp_path)
24 24
25 @OETestDepends(['ssh.SSHTest.test_ssh']) 25 @OETestDepends(['ssh.SSHTest.test_ssh'])
26 @OEHasPackage(['openssh-scp', 'dropbear']) 26 @OEHasPackage(['openssh-scp'])
27 def test_scp_file(self): 27 def test_scp_file(self):
28 dst = '/tmp/test_scp_file' 28 dst = '/tmp/test_scp_file'
29 29