diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-17 21:53:42 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-19 22:27:50 +0100 |
commit | ac66132f92bf7badc4180a8d5b6de47b32861dde (patch) | |
tree | 1c8ce25b8c8afa9311712b8fd29d9acd478a7a51 /bitbake/lib/bb/tests/fetch.py | |
parent | 269265c00091fa65f93de6cad32bf24f1e7f72a3 (diff) | |
download | poky-ac66132f92bf7badc4180a8d5b6de47b32861dde.tar.gz |
bitbake: test/fetch: Update urls to match upstream branch name changes
(Bitbake rev: bcd4285116ea4990f10d53698e0a81ae1e7ce24c)
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.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py index 53bfc2ad68..f5d557e8c0 100644 --- a/bitbake/lib/bb/tests/fetch.py +++ b/bitbake/lib/bb/tests/fetch.py | |||
@@ -1001,7 +1001,7 @@ class FetcherNetworkTest(FetcherTest): | |||
1001 | 1001 | ||
1002 | @skipIfNoNetwork() | 1002 | @skipIfNoNetwork() |
1003 | def test_git_submodule_CLI11(self): | 1003 | def test_git_submodule_CLI11(self): |
1004 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf" | 1004 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf;branch=main" |
1005 | fetcher = bb.fetch.Fetch([url], self.d) | 1005 | fetcher = bb.fetch.Fetch([url], self.d) |
1006 | fetcher.download() | 1006 | fetcher.download() |
1007 | # Previous cwd has been deleted | 1007 | # Previous cwd has been deleted |
@@ -1016,12 +1016,12 @@ class FetcherNetworkTest(FetcherTest): | |||
1016 | @skipIfNoNetwork() | 1016 | @skipIfNoNetwork() |
1017 | def test_git_submodule_update_CLI11(self): | 1017 | def test_git_submodule_update_CLI11(self): |
1018 | """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """ | 1018 | """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """ |
1019 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714" | 1019 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714;branch=main" |
1020 | fetcher = bb.fetch.Fetch([url], self.d) | 1020 | fetcher = bb.fetch.Fetch([url], self.d) |
1021 | fetcher.download() | 1021 | fetcher.download() |
1022 | 1022 | ||
1023 | # CLI11 that pulls in a newer nlohmann-json | 1023 | # CLI11 that pulls in a newer nlohmann-json |
1024 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca" | 1024 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca;branch=main" |
1025 | fetcher = bb.fetch.Fetch([url], self.d) | 1025 | fetcher = bb.fetch.Fetch([url], self.d) |
1026 | fetcher.download() | 1026 | fetcher.download() |
1027 | # Previous cwd has been deleted | 1027 | # Previous cwd has been deleted |