Lines Matching refs:test_result
12 static struct tst_kvm_result *const test_result = variable
443 test_result->result = TBROK; in tst_fatal_error()
444 test_result->lineno = lineno; in tst_fatal_error()
445 test_result->file_addr = (uintptr_t)file; in tst_fatal_error()
447 strcpy(test_result->message, message); in tst_fatal_error()
448 strcat(test_result->message, " at address 0x"); in tst_fatal_error()
449 ptr2hex(test_result->message + strlen(test_result->message), ip); in tst_fatal_error()
461 test_result->result = result; in tst_res_()
462 test_result->lineno = lineno; in tst_res_()
463 test_result->file_addr = (uintptr_t)file; in tst_res_()
464 ret = vsprintf(test_result->message, fmt, args); in tst_res_()
482 test_result->result = result; in tst_brk_()
483 test_result->lineno = lineno; in tst_brk_()
484 test_result->file_addr = (uintptr_t)file; in tst_brk_()
485 ret = vsprintf(test_result->message, fmt, args); in tst_brk_()
489 test_result->result = TBROK; in tst_brk_()
490 strcpy(test_result->message, "Invalid tst_brk() format: "); in tst_brk_()
491 strcat(test_result->message, fmt); in tst_brk_()
500 test_result->file_addr = (uintptr_t)data; in tst_signal_host()
501 test_result->result = KVM_TSYNC; in tst_signal_host()
506 volatile int32_t *vres = &test_result->result; in tst_wait_host()