Lines Matching refs:ex
143 const struct test_case *ex)
147 if (memcmp(&fid->fsid, &ex->fid->fsid, sizeof(fid->fsid))) {
149 ex->name, FSID_VAL_MEMBER(fid->fsid, 0),
150 ex->fid->fsid.val[0]);
154 if (fh->handle_type != ex->fid->handle.handle_type) {
156 ex->name, fh->handle_type, ex->fid->handle.handle_type);
160 if (fh->handle_bytes != ex->fid->handle.handle_bytes) {
162 ex->name, fh->handle_bytes, ex->fid->handle.handle_bytes);
166 if (memcmp(fh->f_handle, ex->fid->handle.f_handle, fh->handle_bytes)) {
168 "Expected (%x...) got (%x...) ", ex->name,
169 *(int *)ex->fid->handle.f_handle, *(int *)fh->f_handle);
176 const struct test_case *ex)
180 if (info_error->error_count != ex->error_count) {
182 ex->name, info_error->error_count, ex->error_count);
186 if (info_error->error != ex->error) {
188 ex->name, info_error->error, ex->error);
213 static void check_event(char *buf, size_t len, const struct test_case *ex)
231 fail += check_error_event_info_error(info_error, ex);
239 fail += check_error_event_info_fid(info_fid, ex);
246 tst_res(TPASS, "Successfully received: %s", ex->name);