ULT renaming: GL Tracing tests

Related-To: NEO-2236

Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski 2020-11-16 19:52:19 +01:00 committed by Compute-Runtime-Automation
parent 12598a82e5
commit b848f20abc
1 changed files with 2 additions and 2 deletions

View File

@ -111,13 +111,13 @@ struct IntelGlTracingTest : public api_tests {
cl_function_id functionId = CL_FUNCTION_COUNT;
};
TEST_F(IntelGlTracingTest, GivenAllFunctionsToTraceExpectPass) {
TEST_F(IntelGlTracingTest, GivenAllFunctionsWhenSettingTracingPointThenTracingOnAllFunctionsIsPerformed) {
uint16_t count = callFunctions();
EXPECT_EQ(count, enterCount);
EXPECT_EQ(count, exitCount);
}
TEST_F(IntelGlTracingTest, GivenNoFunctionsToTraceExpectPass) {
TEST_F(IntelGlTracingTest, GivenNoFunctionsWhenSettingTracingPointThenNoTracingIsPerformed) {
for (uint32_t i = 0; i < CL_FUNCTION_COUNT; ++i) {
status = clSetTracingPointINTEL(handle, static_cast<cl_function_id>(i), CL_FALSE);
EXPECT_EQ(CL_SUCCESS, status);