Searched refs:test_func (Results 1 – 7 of 7) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/iobench/ |
D | iobench.py | 281 def run_one_test(name, size, open_func, test_func, *args): argument 282 mode = test_func.file_open_mode 283 print_label(name, test_func) 287 n, real, cpu = run_during(1.5, lambda: test_func(f, *args)) 291 for test_func in tests: 292 if test_func is None: 295 if mode_filter in test_func.file_open_mode: 297 for s in test_func.file_sizes: 302 open_func, test_func, *args)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | find_recursionlimit.py | 96 test_func = globals()[test_func_name] 98 test_func()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | btm_utils.py | 275 def rec_test(sequence, test_func): argument 280 for y in rec_test(x, test_func): 283 yield test_func(x)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | symtable.py | 129 def __idents_matching(self, test_func): argument 131 if test_func(self._table.symbols[ident])])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_scope.py | 107 test_func = f(10) 108 self.assertEqual(test_func(5), 47)
|
D | test_argparse.py | 213 for test_func in [self.test_failures, self.test_successes]: 214 func_name = test_func.__name__ 218 def wrapper(self, test_func=test_func): argument 219 test_func(self) 2788 for test_func in [self.test_format, 2791 test_name = '%s_%s' % (test_func.__name__, func_suffix) 2793 def test_wrapper(self, test_func=test_func): argument 2794 test_func(self)
|
D | test_socket.py | 146 def clientRun(self, test_func): argument 151 if not callable(test_func): 154 test_func()
|