summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tests/fetch.py
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-12-07 13:41:41 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-12-09 10:56:49 +0000
commit8e03013e19faac932b540eb07bde59aba0d3556a (patch)
treedabf122b4e48ae279dc9729ac8d9debad5406cb6 /bitbake/lib/bb/tests/fetch.py
parentb400b781bd06bade6bd73d5f8f884d4f08f34ef4 (diff)
downloadpoky-8e03013e19faac932b540eb07bde59aba0d3556a.tar.gz
bitbake: fetch: add a test for version check where compression changes
(Bitbake rev: b6f0c29346ad6463c0e521248633e71886bfb5dc) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests/fetch.py')
-rw-r--r--bitbake/lib/bb/tests/fetch.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index dc45eb2e13..6b77afe5f1 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -1346,6 +1346,12 @@ class FetchLatestVersionTest(FetcherTest):
1346 # http://ftp.debian.org/debian/pool/main/d/db5.3/ 1346 # http://ftp.debian.org/debian/pool/main/d/db5.3/
1347 ("db", "/berkeley-db/db-5.3.21.tar.gz", "/debian/pool/main/d/db5.3/", r"(?P<name>db5\.3_)(?P<pver>\d+(\.\d+)+).+\.orig\.tar\.xz") 1347 ("db", "/berkeley-db/db-5.3.21.tar.gz", "/debian/pool/main/d/db5.3/", r"(?P<name>db5\.3_)(?P<pver>\d+(\.\d+)+).+\.orig\.tar\.xz")
1348 : "5.3.10", 1348 : "5.3.10",
1349 #
1350 # packages where the tarball compression changed in the new version
1351 #
1352 # http://ftp.debian.org/debian/pool/main/m/minicom/minicom_2.7.1.orig.tar.gz
1353 ("minicom", "/debian/pool/main/m/minicom/minicom_2.7.1.orig.tar.gz", "", "")
1354 : "2.8",
1349 } 1355 }
1350 1356
1351 @skipIfNoNetwork() 1357 @skipIfNoNetwork()