Message ID | f471093e1c6ca25595f12548b79eabfb5fff2acc.1740146289.git.enrico.scholz@sigma-chemnitz.de |
---|---|
State | New |
Headers | show |
Series | [1/2] cargo_common: use 'config.toml' instead of plain 'config' | expand |
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index e09e9755a3be..115dc24d87e1 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()]