From 60ab4d0a80f30795618b9dab454f2e7a68ae630e Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Fri, 21 Feb 2025 14:58:39 +0100 Subject: 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. (From OE-Core rev: 715d27f0b4301c97f05ed3cbbaace0ba01c28f39) Signed-off-by: Enrico Scholz Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- meta/lib/oeqa/selftest/cases/devtool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index e09e9755a3..115dc24d87 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()] -- cgit v1.2.3-54-g00ecf