Lines Matching refs:tests
97 * \brief Run a loop of validation tests and return the result
1401 * \brief Make test group consisting of graphics pipeline tests
1407 auto tests = newMovePtr<TestCaseGroup>(
1413 tests.get(), params.name, checkSupport, initPrograms, testInstance, params);
1416 group.addChild(tests.release());
1420 * \brief Make test group consisting of compute pipeline tests
1426 auto tests = newMovePtr<TestCaseGroup>(
1432 tests.get(), params.name, checkSupport, initPrograms, testInstance, params);
1435 group.addChild(tests.release());
1445 auto tests = newMovePtr<TestCaseGroup>(testCtx, "creation_cache_control");
1447 addGraphicsPipelineTests(*tests);
1448 addComputePipelineTests(*tests);
1450 return tests.release();