]> code.ossystems Code Review - openembedded-core.git/commitdiff
selftest: recipetool: Correct the URI for socat
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>
Sun, 27 Feb 2022 18:21:33 +0000 (19:21 +0100)
committerAnuj Mittal <anuj.mittal@intel.com>
Mon, 7 Mar 2022 02:59:09 +0000 (10:59 +0800)
The URI to the socat tarball used in the
recipetool.RecipetoolCreateTests.test_recipetool_create_simple test has
been moved to an "Archive" directory.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1e8b716e1377ad49f1451cbabe7c9961cc507731)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
meta/lib/oeqa/selftest/cases/recipetool.py

index 8dc00ac10e2bc8371c2e6430dff47dbbdb7afc14..814a03191bca703e4503e5e7f111dd037566a1d4 100644 (file)
@@ -375,7 +375,7 @@ class RecipetoolTests(RecipetoolBase):
         temprecipe = os.path.join(self.tempdir, 'recipe')
         os.makedirs(temprecipe)
         pv = '1.7.4.1'
-        srcuri = 'http://www.dest-unreach.org/socat/download/socat-%s.tar.bz2' % pv
+        srcuri = 'http://www.dest-unreach.org/socat/download/Archive/socat-%s.tar.bz2' % pv
         result = runCmd('recipetool create %s -o %s' % (srcuri, temprecipe))
         dirlist = os.listdir(temprecipe)
         if len(dirlist) > 1: