Home
last modified time | relevance | path

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

/external/autotest/venv/skylab_suite/
Dsuite_runner.py69 for test_spec in test_specs:
72 bot_id_tag = 'id:%s' % test_spec.bot_id
75 tasks = [t for t in all_tasks if t['name']==test_spec.test.name]
78 not_yet_scheduled.append(test_spec)
84 remaining_retries = test_spec.test.job_retries - len(tasks)
90 test_spec=test_spec,
144 for test_spec in test_specs:
146 test_spec,
153 test_spec=test_spec,
154 remaining_retries=test_spec.test.job_retries - 1,
[all …]
Dsuite_tracking.py44 anchor_test = hspec.test_spec.test.name
46 anchor_test += '-' + hspec.test_spec.dut_name
287 name = test_handler_spec.test_spec.test.name
288 dut_name = test_handler_spec.test_spec.dut_name
Dcros_suite.py228 t['task_id']).test_spec.dut_name
/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.py359 test_spec = globals()[test.__name__ + '_spec']
360 test_spec['name'] = test.__name__
361 test_list.append((test_spec, test))
366 test_spec = d
367 test_spec['name'] = test_name
368 mod = import_module('idlelib.' + test_spec['file'])
370 test_list.append((test_spec, test))
381 test_spec, callable_object = test_list.pop()
382 test_kwds = test_spec['kwds']
384 test_name.set('Test ' + test_spec['name'])
[all …]
/external/tensorflow/tensorflow/contrib/model_pruning/python/
Dpruning_test.py120 test_spec = ",".join(hparams)
121 pruning_hparams = pruning.get_pruning_hparams().parse(test_spec)
191 test_spec = ",".join(param_list)
192 pruning_hparams = pruning.get_pruning_hparams().parse(test_spec)
221 test_spec = ",".join(param_list)
222 pruning_hparams = pruning.get_pruning_hparams().parse(test_spec)
/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/pdfium/testing/tools/coverage/
Dcoverage_report.py156 test_spec = COVERAGE_TESTS[name]
157 if test_spec.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)
161 coverage_tests[name] = TestSpec(binary_path, test_spec.use_test_runner)
/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/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py370 def test_spec(self): member in MetaPathFinderFindModuleTests