From: Enrico Scholz Date: Fri, 21 Feb 2025 13:58:39 +0000 (+0100) Subject: oeqa/selftest/devtool: use 'config.toml' instead of plain 'config' X-Git-Tag: yocto-5.2~409 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=715d27f0b4301c97f05ed3cbbaace0ba01c28f39;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa/selftest/devtool: use 'config.toml' instead of plain 'config' After changing naming of cargo config in cargo_common.bbclass, adapt devtool to use the new name. Signed-off-by: Enrico Scholz Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index e09e9755a3b..115dc24d87e 100644 --- a/meta/lib/oeqa/selftest/cases/devtool.py +++ b/meta/lib/oeqa/selftest/cases/devtool.py @@ -1027,7 +1027,7 @@ class DevtoolModifyTests(DevtoolBase): # Configure the recipe to check that the git dependencies are correctly patched in cargo config bitbake('-c configure %s' % testrecipe) - cargo_config_path = os.path.join(cargo_home, 'config') + cargo_config_path = os.path.join(cargo_home, 'config.toml') with open(cargo_config_path, "r") as f: cargo_config_contents = [line.strip('\n') for line in f.readlines()]