Lines Matching refs:binary
34 # 'binary' is the file that is to be run for the test.
35 # 'use_test_runner' indicates if 'binary' depends on test_runner.py and thus
37 TestSpec = namedtuple('TestSpec', 'binary, use_test_runner')
158 binary_path = os.path.join(testing_tools_directory, test_spec.binary)
160 binary_path = os.path.join(self.build_directory, test_spec.binary)
174 """Find the newest version of binary that meets the min version."""
181 for binary in potential_binaries:
183 print 'Testing llvm-cov binary, %s' % binary
188 version_output = self.check_output([binary, '--version']).splitlines()
199 parsed_versions[parsed_version] = binary
232 spec: Tuple containing the path to the binary to run, and if this test
237 if not os.path.exists(spec.binary):
239 ' @ %s') % (name, spec.binary)
246 binary_args = [spec.binary]
249 # binary, so need -j 1, otherwise multiple processes will be writing to
256 'results') % spec.binary