summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-04 04:11:13 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-08 14:06:04 +0000
commit1354f0f0ab00f783b266c97cebe0b7ce1d514ac7 (patch)
tree737e284541e1985036e0d8acafaecedcfec62edd
parent0810ac6b926cd901f0619e95f367efc79d4c3159 (diff)
downloadpoky-1354f0f0ab00f783b266c97cebe0b7ce1d514ac7.tar.gz
bitbake: tests/fetch2: Fix quoting warning
Fix: lib/bb/tests/fetch.py:1288: DeprecationWarning: invalid escape sequence for several lines of the fetch tests. (Bitbake rev: bd8883d756328ca4c8f6bf97f77e17133a6bfb45) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 9d84fd557a3fcbae2cdd70b24e69325ad737a01e) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/tests/fetch.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index 8ad1070816..afa071bfb1 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -1190,13 +1190,13 @@ class FetchLatestVersionTest(FetcherTest):
1190 : "20120614", 1190 : "20120614",
1191 # packages with a valid UPSTREAM_CHECK_GITTAGREGEX 1191 # packages with a valid UPSTREAM_CHECK_GITTAGREGEX
1192 # mirror of git://anongit.freedesktop.org/xorg/driver/xf86-video-omap since network issues interfered with testing 1192 # mirror of git://anongit.freedesktop.org/xorg/driver/xf86-video-omap since network issues interfered with testing
1193 ("xf86-video-omap", "git://git.yoctoproject.org/bbfetchtests-xf86-video-omap", "ae0394e687f1a77e966cf72f895da91840dffb8f", "(?P<pver>(\d+\.(\d\.?)*))") 1193 ("xf86-video-omap", "git://git.yoctoproject.org/bbfetchtests-xf86-video-omap", "ae0394e687f1a77e966cf72f895da91840dffb8f", r"(?P<pver>(\d+\.(\d\.?)*))")
1194 : "0.4.3", 1194 : "0.4.3",
1195 ("build-appliance-image", "git://git.yoctoproject.org/poky", "b37dd451a52622d5b570183a81583cc34c2ff555", "(?P<pver>(([0-9][\.|_]?)+[0-9]))") 1195 ("build-appliance-image", "git://git.yoctoproject.org/poky", "b37dd451a52622d5b570183a81583cc34c2ff555", r"(?P<pver>(([0-9][\.|_]?)+[0-9]))")
1196 : "11.0.0", 1196 : "11.0.0",
1197 ("chkconfig-alternatives-native", "git://github.com/kergoth/chkconfig;branch=sysroot", "cd437ecbd8986c894442f8fce1e0061e20f04dee", "chkconfig\-(?P<pver>((\d+[\.\-_]*)+))") 1197 ("chkconfig-alternatives-native", "git://github.com/kergoth/chkconfig;branch=sysroot", "cd437ecbd8986c894442f8fce1e0061e20f04dee", r"chkconfig\-(?P<pver>((\d+[\.\-_]*)+))")
1198 : "1.3.59", 1198 : "1.3.59",
1199 ("remake", "git://github.com/rocky/remake.git", "f05508e521987c8494c92d9c2871aec46307d51d", "(?P<pver>(\d+\.(\d+\.)*\d*(\+dbg\d+(\.\d+)*)*))") 1199 ("remake", "git://github.com/rocky/remake.git", "f05508e521987c8494c92d9c2871aec46307d51d", r"(?P<pver>(\d+\.(\d+\.)*\d*(\+dbg\d+(\.\d+)*)*))")
1200 : "3.82+dbg0.9", 1200 : "3.82+dbg0.9",
1201 } 1201 }
1202 1202
@@ -1236,11 +1236,11 @@ class FetchLatestVersionTest(FetcherTest):
1236 # 1236 #
1237 # http://www.cups.org/software/1.7.2/cups-1.7.2-source.tar.bz2 1237 # http://www.cups.org/software/1.7.2/cups-1.7.2-source.tar.bz2
1238 # https://github.com/apple/cups/releases 1238 # https://github.com/apple/cups/releases
1239 ("cups", "/software/1.7.2/cups-1.7.2-source.tar.bz2", "/apple/cups/releases", "(?P<name>cups\-)(?P<pver>((\d+[\.\-_]*)+))\-source\.tar\.gz") 1239 ("cups", "/software/1.7.2/cups-1.7.2-source.tar.bz2", "/apple/cups/releases", r"(?P<name>cups\-)(?P<pver>((\d+[\.\-_]*)+))\-source\.tar\.gz")
1240 : "2.0.0", 1240 : "2.0.0",
1241 # http://download.oracle.com/berkeley-db/db-5.3.21.tar.gz 1241 # http://download.oracle.com/berkeley-db/db-5.3.21.tar.gz
1242 # http://ftp.debian.org/debian/pool/main/d/db5.3/ 1242 # http://ftp.debian.org/debian/pool/main/d/db5.3/
1243 ("db", "/berkeley-db/db-5.3.21.tar.gz", "/debian/pool/main/d/db5.3/", "(?P<name>db5\.3_)(?P<pver>\d+(\.\d+)+).+\.orig\.tar\.xz") 1243 ("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")
1244 : "5.3.10", 1244 : "5.3.10",
1245 } 1245 }
1246 1246