Extend apps attribute

In addition to binary name it's now possible to provide extra
command-line arguments in osmoappdesc.py for application under
test. This change is fully optional and backward compatible.
This commit is contained in:
Max 2016-03-30 14:58:17 +02:00 committed by Harald Welte
parent d401cc13ae
commit 5f4567b2a2
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ def test_config_atest(app_desc, config, run_test, verbose=True):
proc = None
ret = None
try:
cmd = [app_desc[1], "-c", config]
cmd = app_desc[1].split(' ') + [ "-c", config]
if verbose:
print "Verifying %s, test %s" % (' '.join(cmd), run_test.__name__)
@ -128,7 +128,7 @@ def verify_doc(vty):
# Skip testing the configurations of anything that hasn't been compiled
def app_exists(app_desc):
cmd = app_desc[1]
cmd = app_desc[1].split(' ')[0]
return os.path.exists(cmd)