summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-05 16:09:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-06 10:13:57 +0000
commit759b36a8de86bfe5355880a76077af47e156701d (patch)
tree14d72568468fc52ae7560c490d96a58ce9261e8c /meta/lib
parent2e5e0e9ef0a23e45af0c57cdf5390fd85ca36cf0 (diff)
downloadpoky-759b36a8de86bfe5355880a76077af47e156701d.tar.gz
oeqa/runtime/buildcpio: Use our own mirror for source
We see occasional network glitches which break this test. Use our own mirror (which has a .gz instead of .bz2) to avoid the errors, we're not trying to test network connectivity. (From OE-Core rev: 01df65be2ae4bc337e10babeb9c2394d71ddff84) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/runtime/cases/buildcpio.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/buildcpio.py b/meta/lib/oeqa/runtime/cases/buildcpio.py
index 59edc9c2c1..79b22d04dd 100644
--- a/meta/lib/oeqa/runtime/cases/buildcpio.py
+++ b/meta/lib/oeqa/runtime/cases/buildcpio.py
@@ -9,8 +9,7 @@ class BuildCpioTest(OERuntimeTestCase):
9 9
10 @classmethod 10 @classmethod
11 def setUpClass(cls): 11 def setUpClass(cls):
12 uri = 'https://ftp.gnu.org/gnu/cpio' 12 uri = 'https://downloads.yoctoproject.org/mirror/sources/cpio-2.12.tar.gz'
13 uri = '%s/cpio-2.12.tar.bz2' % uri
14 cls.project = TargetBuildProject(cls.tc.target, 13 cls.project = TargetBuildProject(cls.tc.target,
15 uri, 14 uri,
16 dl_dir = cls.tc.td['DL_DIR']) 15 dl_dir = cls.tc.td['DL_DIR'])