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:37 +0000
commit3b0245936ed13bd79f62ac6086bc01677d7bdbcd (patch)
treebc4777e77306ca777845b1607f98f2bd2faf056a /meta/lib
parent65f74267a0a575567f7689eb2a7b6038303b3cf7 (diff)
downloadpoky-3b0245936ed13bd79f62ac6086bc01677d7bdbcd.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: 038d7270aef0cccf87d50a117160c58261beb9b9) 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'])