From: Ross Burton Date: Wed, 7 Jul 2021 15:56:20 +0000 (+0100) Subject: oeqa/selftest/recipetool: update socat version to fix failing download X-Git-Tag: uninative-3.3~281 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=42ebda0c85f14f9f8a508f59115b141d645d4c77;p=openembedded-core.git oeqa/selftest/recipetool: update socat version to fix failing download If the recipetool tests are run with an empty DL_DIR the fetch of socat 1.7.3.0 fails as that URL doesn't exist anymore. Update the version to 1.7.4.1 to fix the test. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/recipetool.py b/meta/lib/oeqa/selftest/cases/recipetool.py index 9d56e9e1e3..f0685d3718 100644 --- a/meta/lib/oeqa/selftest/cases/recipetool.py +++ b/meta/lib/oeqa/selftest/cases/recipetool.py @@ -374,7 +374,7 @@ class RecipetoolTests(RecipetoolBase): # Try adding a recipe temprecipe = os.path.join(self.tempdir, 'recipe') os.makedirs(temprecipe) - pv = '1.7.3.0' + pv = '1.7.4.1' srcuri = 'http://www.dest-unreach.org/socat/download/socat-%s.tar.bz2' % pv result = runCmd('recipetool create %s -o %s' % (srcuri, temprecipe)) dirlist = os.listdir(temprecipe)