summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Truong <alexandre.truong@smile.fr>2024-04-26 12:13:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-04-26 22:11:41 +0100
commit32422174ba452cd248105a942e9b1a1626b9b5bd (patch)
treeac81d5a4abcf2c891d1534f7f98a08a8f354db51
parentb794911ddef7ee3e47222b702937afa97ce78d01 (diff)
downloadpoky-32422174ba452cd248105a942e9b1a1626b9b5bd.tar.gz
Revert "oeqa/selftest/devtool: fix test_devtool_add_git_style2"
This reverts commit ab6d3e3d645ffc343f434bf731339fa237df027a from poky repository. The previous reverted commit was a workaround. The fix "oeqa/selftest/devtool: fix _test_devtool_add_git_url" tackle the issue. So, the workaround is not needed anymore. (From OE-Core rev: f964acb2996b80b21a48a51742a27638d748cd2f) Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/cases/devtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index 5475c029b7..c8f9534e41 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -486,7 +486,7 @@ class DevtoolAddTests(DevtoolBase):
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/ARMmbed/mbedtls.git;protocol=https'"
489 resulting_src_uri = "gitsm://git@github.com/ARMmbed/mbedtls.git;protocol=https;branch=master" 489 resulting_src_uri = "git://git@github.com/ARMmbed/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):