Lines Matching full:options
53 options = parse_options()
55 if not os.path.exists(options.arkdir):
56 logging.info("The following ark directory does not exist: {0}", options.arkdir)
59 if not os.path.exists(options.builddir):
60 logging.info("The following build directory does not exist: {0}", options.builddir)
63 testrunner = os.path.join(options.arkdir, 'tests', 'tests-u-runner', 'main.py')
69 'python', testrunner, '--build-dir', options.builddir, '--force-generate',
70 '--show-progress', '--processes', 'all', '--timeout', str(options.timeout)
73 if options.all:
74 … options.regression = options.runtime = options.cts = options.functional = options.test262 = True
76 if options.regression:
78 if options.runtime:
80 if options.functional:
82 if options.test262:
84 if options.cts: