Lines Matching refs:options
141 def __init__(self, path, options): argument
148 self.test_dir = options.test_dir
149 self.perf = options.perf
326 def run_tests(options): argument
327 for f in glob.glob(options.test_dir + '/' + options.test):
329 Test(f, options).run()
373 options, args = parser.parse_args()
378 setup_log(options.verbose)
380 if not options.test_dir:
384 if not options.test:
385 options.test = 'test*'
388 run_tests(options)