Lines Matching full:options
50 options = parse_options()
52 if not os.path.exists(options.arkdir):
53 print("The following ark directory does not exist: {0}".format(options.arkdir))
56 if not os.path.exists(options.builddir):
57 print("The following build directory does not exist: {0}".format(options.builddir))
60 testrunner = os.path.join(options.arkdir, 'tests', 'tests-u-runner', 'main.py')
65 general_cmd = ['python', testrunner, '--build-dir', options.builddir, '--force-generate',
66 '--show-progress', '--processes', 'all', '--timeout', str(options.timeout)]
68 if options.all:
69 … options.regression = options.runtime = options.cts = options.functional = options.test262 = True
71 if options.regression:
73 if options.runtime:
75 if options.functional:
77 if options.test262:
79 if options.cts: