osmith submitted this change.
testenv: fix missing titan_min= error msg
Fixes: 98268b665 ("testenv: add titan_min to all configs")
Change-Id: I0eb99da16ba6ffd5ae936aa63bb770e2a73fdd25
---
M _testenv/testenv/testenv_cfg.py
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_testenv/testenv/testenv_cfg.py b/_testenv/testenv/testenv_cfg.py
index 84176d7..c687d88 100644
--- a/_testenv/testenv/testenv_cfg.py
+++ b/_testenv/testenv/testenv_cfg.py
@@ -224,7 +224,7 @@
logging.error(f"{path}: missing program= in [testsuite]")
exit_error_readme()
if "titan_min" not in cfg["testsuite"]:
- logging.error(f"{path}: missing program= in [testsuite]")
+ logging.error(f"{path}: missing titan_min= in [testsuite]")
exit_error_readme()
if " " in cfg["testsuite"]["program"]:
logging.error(f"{path}: program= in [testsuite] must not have arguments")
To view, visit change 40452. To unsubscribe, or for help writing mail filters, visit settings.