From: Ian W. <del...@us...> - 2005-05-09 07:09:46
|
Update of /cvsroot/ipbench/ipbench2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12467/src Modified Files: ipbench.py Log Message: update to allow controller args in xml Index: ipbench.py =================================================================== RCS file: /cvsroot/ipbench/ipbench2/src/ipbench.py,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** ipbench.py 5 May 2005 02:46:07 -0000 1.30 --- ipbench.py 9 May 2005 07:09:35 -0000 1.31 *************** *** 292,295 **** --- 292,298 ---- dbprint("[main] setting default test target from config file to " + args.value) options.test_target = str(args.value) + if (args.name == "controller_args"): + dbprint("[main] setting default controller test args from config file to " + args.value) + options.controller_args = str(args.value) # the test should be known by now *************** *** 340,343 **** --- 343,349 ---- dbprintf("[main] setting target args from config file to " + args.value) options.target_test_args = args.value + if (args.name == "controller_args"): + dbprintf("[main] setting target controller args from config file to " + args.value) + options.target_controller_args = str(args.value) # it is possible that there will be multiple <target_test> sections, each |