summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/recipetool.py
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2022-02-27 19:21:33 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-01 23:44:59 +0000
commit6e05fb6551fb00dbf90e8aaed94d13d61169f4b6 (patch)
tree4a4740d362af7f1de6a043f0db320a1b6fe3ee9a /meta/lib/oeqa/selftest/cases/recipetool.py
parent8a461e642db98f4a7b457bf9036feb78aff3bc24 (diff)
downloadpoky-6e05fb6551fb00dbf90e8aaed94d13d61169f4b6.tar.gz
selftest: recipetool: Correct the URI for socat
The URI to the socat tarball used in the recipetool.RecipetoolCreateTests.test_recipetool_create_simple test has been moved to an "Archive" directory. (From OE-Core rev: 1e8b716e1377ad49f1451cbabe7c9961cc507731) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/recipetool.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/recipetool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/recipetool.py b/meta/lib/oeqa/selftest/cases/recipetool.py
index 09448bad01..a5fe4084b4 100644
--- a/meta/lib/oeqa/selftest/cases/recipetool.py
+++ b/meta/lib/oeqa/selftest/cases/recipetool.py
@@ -377,7 +377,7 @@ class RecipetoolCreateTests(RecipetoolBase):
377 temprecipe = os.path.join(self.tempdir, 'recipe') 377 temprecipe = os.path.join(self.tempdir, 'recipe')
378 os.makedirs(temprecipe) 378 os.makedirs(temprecipe)
379 pv = '1.7.4.1' 379 pv = '1.7.4.1'
380 srcuri = 'http://www.dest-unreach.org/socat/download/socat-%s.tar.bz2' % pv 380 srcuri = 'http://www.dest-unreach.org/socat/download/Archive/socat-%s.tar.bz2' % pv
381 result = runCmd('recipetool create %s -o %s' % (srcuri, temprecipe)) 381 result = runCmd('recipetool create %s -o %s' % (srcuri, temprecipe))
382 dirlist = os.listdir(temprecipe) 382 dirlist = os.listdir(temprecipe)
383 if len(dirlist) > 1: 383 if len(dirlist) > 1: