summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2019-09-01 14:28:04 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-11-07 07:40:36 +0000
commitc83e52cef05db827d526fd62439718fb88931379 (patch)
tree6e7ffed0d7e04986e18c007802c785e8258bad6a
parent5f660914cd7eec8117efccdf1eb29c466b4e74f7 (diff)
downloadpoky-rocko.tar.gz
bitbake: tests/fetch: Resolve fetch error in bitbake-selftestrocko
FAIL: test_wget_latest_versionstring (bb.tests.fetch.FetchLatestVersionTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/pokybuild/yocto-worker/oe-selftest/build/bitbake/lib/bb/tests/fetch.py", line 1229, in test_wget_latest_versionstring self.assertTrue(verstring, msg="Could not find upstream version for %s" % k[0]) AssertionError: '' is not true : Could not find upstream version for db [YOCTO #13496] The Oracle UPSTREAM_CHECK_URI used changed and does not work with logic in wget. Update UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEX to match the ones used in the recipe. Also change the version being checked. (Bitbake rev: 1b989fb76e3e5f044c2e14c7b26a5562803fde9d) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/tests/fetch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index d7ad97f3f4..53146d9034 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -796,8 +796,8 @@ class FetchLatestVersionTest(FetcherTest):
796 # packages with valid UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEX 796 # packages with valid UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEX
797 ("cups", "http://www.cups.org/software/1.7.2/cups-1.7.2-source.tar.bz2", "https://github.com/apple/cups/releases", "(?P<name>cups\-)(?P<pver>((\d+[\.\-_]*)+))\-source\.tar\.gz") 797 ("cups", "http://www.cups.org/software/1.7.2/cups-1.7.2-source.tar.bz2", "https://github.com/apple/cups/releases", "(?P<name>cups\-)(?P<pver>((\d+[\.\-_]*)+))\-source\.tar\.gz")
798 : "2.0.0", 798 : "2.0.0",
799 ("db", "http://download.oracle.com/berkeley-db/db-5.3.21.tar.gz", "http://www.oracle.com/technetwork/products/berkeleydb/downloads/index-082944.html", "http://download.oracle.com/otn/berkeley-db/(?P<name>db-)(?P<pver>((\d+[\.\-_]*)+))\.tar\.gz") 799 ("db", "http://download.oracle.com/berkeley-db/db-5.3.21.tar.gz", "http://ftp.debian.org/debian/pool/main/d/db5.3/", "(?P<name>db5\.3_)(?P<pver>\d+(\.\d+)+).+\.orig\.tar\.xz")
800 : "6.1.19", 800 : "5.3.10",
801 } 801 }
802 802
803 @skipIfNoNetwork() 803 @skipIfNoNetwork()