summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-19 10:06:15 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-19 22:28:27 +0100
commitd2f1a20a19a8a1d604e703d630421a2cdbe65e14 (patch)
tree4bf592e434bb53e51c452f66dfe98aa74406af82 /bitbake
parentb47125666fe44e491ce9a4ecadd1875bec9891db (diff)
downloadpoky-d2f1a20a19a8a1d604e703d630421a2cdbe65e14.tar.gz
bitbake: test/fetch: Update urls to match upstream branch name changes
(Bitbake rev: 93094705c1c66688e0730a1efb17805778c9fa9f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 473e2a5486bd972ad0f808db089abcb8945d3a48) Signed-off-by: Justin Bronder <jsbronder@cold-front.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/tests/fetch.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index a07879529d..8ad1070816 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -937,7 +937,7 @@ class FetcherNetworkTest(FetcherTest):
937 937
938 @skipIfNoNetwork() 938 @skipIfNoNetwork()
939 def test_git_submodule_CLI11(self): 939 def test_git_submodule_CLI11(self):
940 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf" 940 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf;branch=main"
941 fetcher = bb.fetch.Fetch([url], self.d) 941 fetcher = bb.fetch.Fetch([url], self.d)
942 fetcher.download() 942 fetcher.download()
943 # Previous cwd has been deleted 943 # Previous cwd has been deleted
@@ -952,12 +952,12 @@ class FetcherNetworkTest(FetcherTest):
952 @skipIfNoNetwork() 952 @skipIfNoNetwork()
953 def test_git_submodule_update_CLI11(self): 953 def test_git_submodule_update_CLI11(self):
954 """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """ 954 """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """
955 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714" 955 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714;branch=main"
956 fetcher = bb.fetch.Fetch([url], self.d) 956 fetcher = bb.fetch.Fetch([url], self.d)
957 fetcher.download() 957 fetcher.download()
958 958
959 # CLI11 that pulls in a newer nlohmann-json 959 # CLI11 that pulls in a newer nlohmann-json
960 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca" 960 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca;branch=main"
961 fetcher = bb.fetch.Fetch([url], self.d) 961 fetcher = bb.fetch.Fetch([url], self.d)
962 fetcher.download() 962 fetcher.download()
963 # Previous cwd has been deleted 963 # Previous cwd has been deleted