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-17 22:51:59 +0100 |
commit | 4359dba4febb40c87c8bb47c42f94d0204f41844 (patch) | |
tree | f42e918c4dafd9dbd8c1cdf40f2eca21ec539fb9 /bitbake | |
parent | 1028d0158a2fb603479893dc4f7386d15bf68fd2 (diff) | |
download | poky-4359dba4febb40c87c8bb47c42f94d0204f41844.tar.gz |
bitbake: test/fetch: Update urls to match upstream branch name changes
(Bitbake rev: 473e2a5486bd972ad0f808db089abcb8945d3a48)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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 c20f746f09..8ad1c85990 100644 --- a/bitbake/lib/bb/tests/fetch.py +++ b/bitbake/lib/bb/tests/fetch.py | |||
@@ -1012,7 +1012,7 @@ class FetcherNetworkTest(FetcherTest): | |||
1012 | 1012 | ||
1013 | @skipIfNoNetwork() | 1013 | @skipIfNoNetwork() |
1014 | def test_git_submodule_CLI11(self): | 1014 | def test_git_submodule_CLI11(self): |
1015 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf" | 1015 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf;branch=main" |
1016 | fetcher = bb.fetch.Fetch([url], self.d) | 1016 | fetcher = bb.fetch.Fetch([url], self.d) |
1017 | fetcher.download() | 1017 | fetcher.download() |
1018 | # Previous cwd has been deleted | 1018 | # Previous cwd has been deleted |
@@ -1027,12 +1027,12 @@ class FetcherNetworkTest(FetcherTest): | |||
1027 | @skipIfNoNetwork() | 1027 | @skipIfNoNetwork() |
1028 | def test_git_submodule_update_CLI11(self): | 1028 | def test_git_submodule_update_CLI11(self): |
1029 | """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """ | 1029 | """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """ |
1030 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714" | 1030 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714;branch=main" |
1031 | fetcher = bb.fetch.Fetch([url], self.d) | 1031 | fetcher = bb.fetch.Fetch([url], self.d) |
1032 | fetcher.download() | 1032 | fetcher.download() |
1033 | 1033 | ||
1034 | # CLI11 that pulls in a newer nlohmann-json | 1034 | # CLI11 that pulls in a newer nlohmann-json |
1035 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca" | 1035 | url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca;branch=main" |
1036 | fetcher = bb.fetch.Fetch([url], self.d) | 1036 | fetcher = bb.fetch.Fetch([url], self.d) |
1037 | fetcher.download() | 1037 | fetcher.download() |
1038 | # Previous cwd has been deleted | 1038 | # Previous cwd has been deleted |