Home
last modified time | relevance | path

Searched refs:testid (Results 1 – 3 of 3) sorted by relevance

/openbmc/openbmc/poky/meta/lib/patchtest/selftest/
H A Dselftest64 testid = ".%s.%s" % (klass,testname) variable
67 if testid in resultline:
72 print("XFAIL: %s (file: %s)" % (testid.strip("."), os.path.basename(patch)))
75 print("XPASS: %s (file: %s)" % (testid.strip("."), os.path.basename(patch)))
78 print("XSKIP: %s (file: %s)" % (testid.strip("."), os.path.basename(patch)))
80 … print("%s: %s (%s)" % (result.upper(), testid.strip("."), os.path.basename(patch)))
88 … print("Bad result on test %s against %s" % (testid.strip("."), os.path.basename(patch)))
/openbmc/u-boot/post/
H A Dpost.c115 static void post_log_mark_start(unsigned long testid) in post_log_mark_start() argument
117 gd->post_log_word |= testid; in post_log_mark_start()
120 static void post_log_mark_succ(unsigned long testid) in post_log_mark_succ() argument
122 gd->post_log_res |= testid; in post_log_mark_succ()
131 if (gd->post_log_word & (post_list[j].testid)) { in post_output_backlog()
133 if (gd->post_log_res & post_list[j].testid) in post_output_backlog()
251 post_log_mark_start(test->testid); in post_run_single()
260 post_log_mark_succ(test->testid); in post_run_single()
/openbmc/u-boot/include/
H A Dpost.h104 unsigned long testid; member