Lines Matching refs:options
121 def __init__(self, path, options): argument
128 self.test_dir = options.test_dir
129 self.perf = options.perf
263 def run_tests(options): argument
264 for f in glob.glob(options.test_dir + '/' + options.test):
266 Test(f, options).run()
308 options, args = parser.parse_args()
313 setup_log(options.verbose)
315 if not options.test_dir:
319 if not options.test:
320 options.test = 'test*'
323 run_tests(options)