Hi! > - cleanup(); > - tst_exit(); > + tst_res(TINFO, "%s", tc->desc); You can pass the description to the TST_EXP_FAIL() instead. > + TST_EXP_FAIL(lchown(*tc->pathname, user_id, group_id), tc->exp_errno); As: TST_EXP_FAI(lchown(*tc->pathname, user_id, group_id), tc->exp_errno, "%s", tc->desc); -- Cyril Hrubis chrubis@suse.cz