Home
last modified time | relevance | path

Searched refs:test_module (Results 1 – 16 of 16) sorted by relevance

/external/autotest/client/cros/cellular/pseudomodem/
Dpseudomodem.py186 if not self._opts.test_module:
189 test_module = self._LoadCustomPartsModule(self._opts.test_module)
192 self._modem = self._CreateCustomObject(test_module,
197 self._sim = self._CreateCustomObject(test_module,
208 test_module,
213 def _CreateCustomObject(self, test_module, class_name, arg_file_name): argument
238 class_def = getattr(test_module, class_name)
436 if not opts.test_module and test_objects:
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_test_runner.py43 test_module = imp.load_source(subtest_name, module_name)
48 test_class = getattr(test_module, subtest_name)
/external/selinux/python/sepolicy/sepolicy/
Dinterface.py174 from templates import test_module
177 param_tmp.append(test_module.dict_values[i])
184 from templates import test_module
186 te += re.sub("TEMPLATETYPE", name, test_module.te_test_module)
/external/selinux/python/sepolgen/tests/
Drun-tests.py13 from test_module import *
/external/clang/
Dbuild.py519 test_module = 'asan_test'
521 '{}_intermediates'.format(test_module))
522 built_test = os.path.join(test_dir, 'PACKED', test_module)
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
Dexecutionengine.ml62 let m = create_module (global_context ()) "test_module" in
/external/llvm/test/Bindings/OCaml/
Dexecutionengine.ml49 let m = create_module (global_context ()) "test_module" in
/external/python/cpython2/Lib/test/
Dtest_repr.py253 def test_module(self): member in LongReprTest
Dtest_ast.py298 def test_module(self): member in AST_Tests
Dtest_funcattrs.py34 def test_module(self): member in FunctionPropertiesTest
Dtest_pydoc.py498 def test_module(self): member in TestDescriptions
Dtest_warnings.py131 def test_module(self): member in FilterTests
Dtest_decimal.py1092 def test_module(self): member in DecimalArithmeticOperatorsTest
/external/python/cpython2/Doc/library/
Dunittest.rst195 python -m unittest test_module.TestClass
196 python -m unittest test_module.TestClass.test_method
203 python -m unittest -v test_module
1826 >>> main(module='test_module', exit=False)
/external/libxml2/
Dtestapi.c21 static int test_module(const char *module);
147 ret = test_module(argv[2]); in main()
151 ret = test_module(argv[1]); in main()
52344 test_module(const char *module) { in test_module() function
/external/python/cpython2/Misc/
DNEWS8276 - Issue #5995: A fix to allow you to run "python -m unittest test_module" or
8277 "python -m unittest test_module.TestClass" from the command line.