summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2020-11-30 11:24:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-12-03 22:53:09 +0000
commit89c09260ed77aca3f088eba504f69c99d4c4ee5f (patch)
tree3f8ba21c5fa134c9d71035fd379941e5c57218b3 /meta/lib
parent2703d3ab2d7aca070b39fec4a30b5c3a8fd36d88 (diff)
downloadpoky-89c09260ed77aca3f088eba504f69c99d4c4ee5f.tar.gz
oeqa/devtool: use Yocto mirror for pv-1.5.3 tarball
Some of the selftests failed over the weekend with "access denied" errors fetching this tarball. Instead of relying on upstream when fetching the tarball, use the Yocto source mirrors instead. (From OE-Core rev: 988e0ff4131f46dfed14516ff5f61d72b9fb6941) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/devtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index d3d2e04c20..b8edc89768 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -269,7 +269,7 @@ class DevtoolAddTests(DevtoolBase):
269 self.track_for_cleanup(tempdir) 269 self.track_for_cleanup(tempdir)
270 pn = 'pv' 270 pn = 'pv'
271 pv = '1.5.3' 271 pv = '1.5.3'
272 url = 'http://www.ivarch.com/programs/sources/pv-1.5.3.tar.bz2' 272 url = 'http://downloads.yoctoproject.org/mirror/sources/pv-1.5.3.tar.bz2'
273 result = runCmd('wget %s' % url, cwd=tempdir) 273 result = runCmd('wget %s' % url, cwd=tempdir)
274 result = runCmd('tar xfv %s' % os.path.basename(url), cwd=tempdir) 274 result = runCmd('tar xfv %s' % os.path.basename(url), cwd=tempdir)
275 srcdir = os.path.join(tempdir, '%s-%s' % (pn, pv)) 275 srcdir = os.path.join(tempdir, '%s-%s' % (pn, pv))