Lines Matching refs:tc
83 } tc[] = {
99 int TST_TOTAL = ARRAY_SIZE(tc);
101 static void verify_mount(struct test_case *tc)
103 if (tc->setup)
104 tc->setup();
106 TEST(mount(*tc->device, *tc->mntpoint, *tc->fs_type, tc->flag, NULL));
114 if (TEST_ERRNO != tc->exp_errno) {
117 tst_strerrno(tc->exp_errno), tc->exp_errno);
124 if (tc->cleanup)
125 tc->cleanup();
140 verify_mount(tc + i);