summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-07 10:53:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-09 15:54:55 +0000
commitea2d42c2b110cb953dad051b3720d85575bd2b82 (patch)
tree3623ec537826296ed09f087f3b26936087c64256
parent96a85854fedfd6b3a882ce6394a10ea5ca521689 (diff)
downloadpoky-ea2d42c2b110cb953dad051b3720d85575bd2b82.tar.gz
bitbake: tests/fetch: Update pcre.org address after github changes
vcs.pcre.org was a redirect to github which we use for subversion testing. With the protocol changes at github and the removal of the redirect, use a direct address for github. (Bitbake rev: fa471399d41efdf61e95e0be541b45f0621756f3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 6230ca71eb7eb2a6db162e28a01727d00af5299b) 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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index 9144c9d177..6ef5183bc4 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -1049,7 +1049,7 @@ class SVNTest(FetcherTest):
1049 1049
1050 bb.process.run("svn co %s svnfetch_co" % self.repo_url, cwd=self.tempdir) 1050 bb.process.run("svn co %s svnfetch_co" % self.repo_url, cwd=self.tempdir)
1051 # Github will emulate SVN. Use this to check if we're downloding... 1051 # Github will emulate SVN. Use this to check if we're downloding...
1052 bb.process.run("svn propset svn:externals 'bitbake svn://vcs.pcre.org/pcre2/code' .", 1052 bb.process.run("svn propset svn:externals 'bitbake https://github.com/PhilipHazel/pcre2.git' .",
1053 cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk')) 1053 cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk'))
1054 bb.process.run("svn commit --non-interactive -m 'Add external'", 1054 bb.process.run("svn commit --non-interactive -m 'Add external'",
1055 cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk')) 1055 cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk'))