Lines Matching refs:options
148 def __init__(self, path, options): argument
155 self.test_dir = options.test_dir
156 self.perf = options.perf
399 def run_tests(options): argument
400 for f in glob.glob(options.test_dir + '/' + options.test):
402 Test(f, options).run()
446 options, args = parser.parse_args()
451 setup_log(options.verbose)
453 if not options.test_dir:
457 if not options.test:
458 options.test = 'test*'
461 run_tests(options)