summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-10 13:59:03 +0000
committerSteve Sakoman <steve@sakoman.com>2025-11-14 06:45:29 -0800
commit7ff4ef9855855982abdc822b2f0650972a7ec4a0 (patch)
tree68bd99cc08027249a2c55c3bfff8e8ac68c81392 /meta/lib
parent7810db935d368329565aa65329d2c9c135ee1e01 (diff)
downloadpoky-7ff4ef9855855982abdc822b2f0650972a7ec4a0.tar.gz
oeqa/selftest/devtool: Update after upstream repo changes
The upstream changed the branch name, moving to archive/ so we need to update too. Take the opportunity to match the new location too to avoid the redirect. We could use a different branch but upstream would probably eventually rename that too so this may last longer. (From OE-Core rev: 1e0a64a1890a62e130595f46d93c8d08af9170f5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 478a645bad150f04dee1b0085c4542c2eefe7007) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/devtool.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index ee75687f01..55048830bf 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -476,8 +476,8 @@ class DevtoolAddTests(DevtoolBase):
476 version = 'v3.1.0' 476 version = 'v3.1.0'
477 pn = 'mbedtls' 477 pn = 'mbedtls'
478 # this will trigger reformat_git_uri with branch parameter in url 478 # this will trigger reformat_git_uri with branch parameter in url
479 git_url = "'git://git@github.com/ARMmbed/mbedtls.git;branch=mbedtls-2.28;protocol=https'" 479 git_url = "'git://git@github.com/Mbed-TLS/mbedtls.git;branch=archive/mbedtls-2.28;protocol=https'"
480 resulting_src_uri = "git://git@github.com/ARMmbed/mbedtls.git;branch=mbedtls-2.28;protocol=https" 480 resulting_src_uri = "git://git@github.com/Mbed-TLS/mbedtls.git;branch=archive/mbedtls-2.28;protocol=https"
481 self._test_devtool_add_git_url(git_url, version, pn, resulting_src_uri) 481 self._test_devtool_add_git_url(git_url, version, pn, resulting_src_uri)
482 482
483 def test_devtool_add_git_style2(self): 483 def test_devtool_add_git_style2(self):
@@ -485,8 +485,8 @@ class DevtoolAddTests(DevtoolBase):
485 srcrev = 'v3.1.0' 485 srcrev = 'v3.1.0'
486 pn = 'mbedtls' 486 pn = 'mbedtls'
487 # this will trigger reformat_git_uri with branch parameter in url 487 # this will trigger reformat_git_uri with branch parameter in url
488 git_url = "'git://git@github.com/ARMmbed/mbedtls.git;protocol=https'" 488 git_url = "'git://git@github.com/Mbed-TLS/mbedtls.git;protocol=https'"
489 resulting_src_uri = "git://git@github.com/ARMmbed/mbedtls.git;protocol=https;branch=master" 489 resulting_src_uri = "git://git@github.com/Mbed-TLS/mbedtls.git;protocol=https;branch=master"
490 self._test_devtool_add_git_url(git_url, version, pn, resulting_src_uri, srcrev) 490 self._test_devtool_add_git_url(git_url, version, pn, resulting_src_uri, srcrev)
491 491
492 def test_devtool_add_library(self): 492 def test_devtool_add_library(self):