Searched refs:test_name (Results 1 – 11 of 11) sorted by relevance
/u-boot/test/dm/ |
A D | test-main.c | 136 if (!strcmp(test_name, find_name)) in test_matches() 140 if (!strncmp(test_name, "dm_test_", 8)) in test_matches() 141 test_name += 8; in test_matches() 143 if (!strcmp(test_name, find_name)) in test_matches() 149 int dm_test_main(const char *test_name) in dm_test_main() argument 172 if (!test_name) in dm_test_main() 182 if (!test_matches(name, test_name)) in dm_test_main() 206 if (test_name && !found) in dm_test_main() 224 const char *test_name = NULL; in do_ut_dm() local 227 test_name = argv[1]; in do_ut_dm() [all …]
|
/u-boot/tools/patman/ |
A D | test_util.py | 104 def ReportResult(toolname:str, test_name: str, result: unittest.TestResult): 116 if test_name: 120 if ("has no attribute '%s'" % test_name) not in err: 142 test_name, toolpath, test_class_list): argument 179 preserve_outdirs=test_preserve_dirs and test_name is not None, 181 if test_name: 183 suite.addTests(loader.loadTestsFromName(test_name, module))
|
/u-boot/tools/dtoc/ |
A D | dtoc | 54 test_name = args and args[0] or None 58 processes=processes, test_name=test_name, toolpath=[], 61 return test_util.ReportResult('binman', test_name, result)
|
A D | main.py | 54 test_name = args and args[0] or None 58 processes=processes, test_name=test_name, toolpath=[], 61 return test_util.ReportResult('binman', test_name, result)
|
A D | test_fdt | 600 test_name = args and args[0] or None 602 if test_name: 604 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
|
A D | test_fdt.py | 600 test_name = args and args[0] or None 602 if test_name: 604 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
|
A D | test_dtoc.py | 125 def test_name(self): member in TestDtoc
|
/u-boot/test/ |
A D | cmd_ut.c | 28 const char *test_name = test->name; in cmd_ut_category() local 31 if (prefix && !strncmp(test_name, prefix, prefix_len)) in cmd_ut_category() 32 test_name += prefix_len; in cmd_ut_category() 34 if (argc > 1 && strcmp(argv[1], test_name)) in cmd_ut_category()
|
/u-boot/tools/binman/ |
A D | binman | 67 test_name = args and args[0] or None 72 result, debug, verbosity, test_preserve_dirs, processes, test_name, 77 return test_util.ReportResult('binman', test_name, result)
|
A D | main.py | 67 test_name = args and args[0] or None 72 result, debug, verbosity, test_preserve_dirs, processes, test_name, 77 return test_util.ReportResult('binman', test_name, result)
|
/u-boot/include/test/ |
A D | test.h | 115 int dm_test_main(const char *test_name);
|
Completed in 10 milliseconds