Lines Matching refs:args
49 def RunTests(debug, verbosity, processes, test_preserve_dirs, args, toolpath): argument
75 test_name = args and args[0] or None
102 def RunBinman(args): argument
110 if not args.debug:
115 if not args.toolpath:
116 args.toolpath = ['./tools', 'build-sandbox/tools']
118 if args.cmd == 'test':
119 if args.test_coverage:
120 RunTestCoverage(args.toolpath, args.build_dir)
122 ret_code = RunTests(args.debug, args.verbosity, args.processes,
123 args.test_preserve_dirs, args.tests,
124 args.toolpath)
126 elif args.cmd == 'bintool-docs':
129 elif args.cmd == 'entry-docs':
134 ret_code = control.Binman(args)
137 if args.debug:
145 args = cmdline.ParseArgs(sys.argv[1:])
147 ret_code = RunBinman(args)