Home
last modified time | relevance | path

Searched refs:test_spec (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Lib/idlelib/idle_test/
Dhtest.py355 test_spec = globals()[test.__name__ + '_spec']
356 test_spec['name'] = test.__name__
357 test_list.append((test_spec, test))
362 test_spec = d
363 test_spec['name'] = test_name
364 mod = import_module('idlelib.' + test_spec['file'])
366 test_list.append((test_spec, test))
376 test_spec, callable_object[0] = test_list.pop()
377 test_kwds[0] = test_spec['kwds']
379 test_name[0].set('Test ' + test_spec['name'])
[all …]
/external/python/cpython3/Lib/idlelib/idle_test/
Dhtest.py390 test_spec = globals()[test.__name__ + '_spec']
391 test_spec['name'] = test.__name__
392 test_list.append((test_spec, test))
397 test_spec = d
398 test_spec['name'] = test_name
399 mod = import_module('idlelib.' + test_spec['file'])
401 test_list.append((test_spec, test))
412 test_spec, callable_object = test_list.pop()
413 test_kwds = test_spec['kwds']
415 test_name.set('Test ' + test_spec['name'])
[all …]
/external/pdfium/testing/tools/coverage/
Dcoverage_report.py154 test_spec = COVERAGE_TESTS[name]
155 if test_spec.use_test_runner:
156 binary_path = os.path.join(testing_tools_directory, test_spec.binary)
160 binary_path = os.path.join(self.build_directory, test_spec.binary)
162 coverage_tests[name] = TestSpec(binary_path, test_spec.use_test_runner,
163 test_spec.opt_args)
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/
Dtranslate.py126 test_spec = 'x:'
128 test_spec += '.'.join(scope[:i]) + '.'
129 test_spec += mojom_name
130 kind = kinds.get(test_spec)
145 test_spec = '.'.join(scope[:i])
146 if test_spec:
147 test_spec += '.'
148 test_spec += mojom_name
149 value = values.get(test_spec)
/external/toolchain-utils/
Drun_tests_for.py83 def _run_test(test_spec): argument
86 test_spec.command,
87 cwd=test_spec.directory,
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp1.cpp61 void test_spec(X0<void*> xvp, void *vp) { in test_spec() function
Dp2.cpp131 void test_spec(N0::X0<void*> xvp, void *vp) { in test_spec() function
Dp2-0x.cpp136 void test_spec(N0::X0<void*> xvp, void *vp) { in test_spec() function
/external/tensorflow/tensorflow/lite/experimental/swift/
DTensorFlowLiteSwift-nightly.podspec26 s.test_spec 'Tests' do |ts|
DTensorFlowLiteSwift.podspec26 s.test_spec 'Tests' do |ts|
/external/tensorflow/tensorflow/lite/experimental/objc/
DTensorFlowLiteObjC.podspec39 s.test_spec 'Tests' do |ts|
DTensorFlowLiteObjC-nightly.podspec39 s.test_spec 'Tests' do |ts|
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py370 def test_spec(self): member in MetaPathFinderFindModuleTests