Lines Matching full:options
63 options = self.context.options
65 if options.vs_solution:
66 options.vs_solution = os.path.abspath(options.vs_solution)
67 if not os.path.isfile(options.vs_solution):
70 options.vs_solution
73 elif options.binary:
74 options.binary = os.path.abspath(options.binary)
75 if not os.path.isfile(options.binary):
77 '<d>could not find binary file</> <r>"{}"</>'.format(options.binary)
85 options.test_path = os.path.abspath(options.test_path)
86 options.test_path = os.path.normcase(options.test_path)
87 if not os.path.isfile(options.test_path) and not os.path.isdir(
88 options.test_path
91 '<d>could not find test path</> <r>"{}"</>'.format(options.test_path)
94 if options.results_directory:
95 options.results_directory = os.path.abspath(options.results_directory)
96 if not os.path.isdir(options.results_directory):
98 os.makedirs(options.results_directory, exist_ok=True)
102 options.results_directory, e.strerror
107 options = self.context.options
109 options.executable = os.path.join(
114 options.test_files = [options.test_path]
118 options.source_files = []
119 if not options.test_path.endswith(".dex"):
120 options.source_files = [options.test_path]
121 self._run_test(self._get_test_name(options.test_path))
135 test_name = os.path.relpath(test_path, self.context.options.test_path)