Lines Matching refs:options
120 def __init__(self, path, options): argument
127 self.test_dir = options.test_dir
128 self.perf = options.perf
262 def run_tests(options): argument
263 for f in glob.glob(options.test_dir + '/' + options.test):
265 Test(f, options).run()
307 options, args = parser.parse_args()
312 setup_log(options.verbose)
314 if not options.test_dir:
318 if not options.test:
319 options.test = 'test*'
322 run_tests(options)