Home | History | Annotate | Download | only in amdgpu

Lines Matching defs:suites

59 /** The table of all known test suites to run */
60 static CU_SuiteInfo suites[] = {
89 /** Display information about all suites and their tests */
95 printf("Suites\n");
97 for (iSuite = 0; suites[iSuite].pName != NULL; iSuite++) {
99 iSuite + 1, suites[iSuite].pName);
101 for (iTest = 0; suites[iSuite].pTests[iTest].pName != NULL;
104 suites[iSuite].pTests[iTest].pName);
113 " l - Display all suites and their tests\n"
190 /* Initialize test suites to run */
198 /* Register suites. */
199 if (CU_register_suites(suites) != CUE_SUCCESS) {