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-21 11:35:37 +0000
commit8fe7b8d53a4ffbdd950d6269fd68739a22c75c45 (patch)
tree6dc0151b6ded0a5a75a27f6efc6b85896d04caa9
parentc137acdae189d94b4b761de17d2a0b9ba7b79f41 (diff)
downloadpoky-8fe7b8d53a4ffbdd950d6269fd68739a22c75c45.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: 3ce3efde167e8cd109659b81275a6935875877eb) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 6230ca71eb7eb2a6db162e28a01727d00af5299b) Signed-off-by: Anuj Mittal <anuj.mittal@intel.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 0fb279e82b..86eccf7de2 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -1117,7 +1117,7 @@ class SVNTest(FetcherTest):
1117 1117
1118 bb.process.run("svn co %s svnfetch_co" % self.repo_url, cwd=self.tempdir) 1118 bb.process.run("svn co %s svnfetch_co" % self.repo_url, cwd=self.tempdir)
1119 # Github will emulate SVN. Use this to check if we're downloding... 1119 # Github will emulate SVN. Use this to check if we're downloding...
1120 bb.process.run("svn propset svn:externals 'bitbake svn://vcs.pcre.org/pcre2/code' .", 1120 bb.process.run("svn propset svn:externals 'bitbake https://github.com/PhilipHazel/pcre2.git' .",
1121 cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk')) 1121 cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk'))
1122 bb.process.run("svn commit --non-interactive -m 'Add external'", 1122 bb.process.run("svn commit --non-interactive -m 'Add external'",
1123 cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk')) 1123 cwd=os.path.join(self.tempdir, 'svnfetch_co', 'trunk'))