osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40452?usp=email )
Change subject: testenv: fix missing titan_min= error msg ......................................................................
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/52/40452/1
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")