]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/selftest/recipetool: update socat version to fix failing download
authorRoss Burton <ross@burtonini.com>
Wed, 7 Jul 2021 15:56:20 +0000 (16:56 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 8 Jul 2021 13:58:24 +0000 (14:58 +0100)
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 <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/recipetool.py

index 9d56e9e1e32e3ce1903fa23d7fc6d1e10931bc7a..f0685d37182e5c1df63237b21d704421dae15e6f 100644 (file)
@@ -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)