ULT renaming: Fill Buffer tests

Related-To: NEO-2236

Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski 2021-03-29 13:50:00 +02:00 committed by Compute-Runtime-Automation
parent 022f139bd5
commit 9606cde51a
1 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@ HWTEST_F(EnqueueFillBufferCmdTests, WhenFillingBufferThenIndirectDataGetsAdded)
context.getMemoryManager()->freeGraphicsMemory(patternAllocation);
}
HWTEST_F(EnqueueFillBufferCmdTests, FillBufferRightLeftover) {
HWTEST_F(EnqueueFillBufferCmdTests, GivenRightLeftoverWhenFillingBufferThenFillBufferRightLeftoverKernelUsed) {
auto patternAllocation = context.getMemoryManager()->allocateGraphicsMemoryWithProperties(MockAllocationProperties{context.getDevice(0)->getRootDeviceIndex(), EnqueueFillBufferTraits::patternSize});
EnqueueFillBufferHelper<>::enqueueFillBuffer(pCmdQ, buffer);
@ -152,7 +152,7 @@ HWTEST_F(EnqueueFillBufferCmdTests, FillBufferRightLeftover) {
context.getMemoryManager()->freeGraphicsMemory(patternAllocation);
}
HWTEST_F(EnqueueFillBufferCmdTests, FillBufferMiddle) {
HWTEST_F(EnqueueFillBufferCmdTests, GivenMiddleWhenFillingBufferThenFillBufferMiddleKernelUsed) {
auto patternAllocation = context.getMemoryManager()->allocateGraphicsMemoryWithProperties(MockAllocationProperties{context.getDevice(0)->getRootDeviceIndex(), EnqueueFillBufferTraits::patternSize});
EnqueueFillBufferHelper<>::enqueueFillBuffer(pCmdQ, buffer);
@ -179,7 +179,7 @@ HWTEST_F(EnqueueFillBufferCmdTests, FillBufferMiddle) {
context.getMemoryManager()->freeGraphicsMemory(patternAllocation);
}
HWTEST_F(EnqueueFillBufferCmdTests, FillBufferLeftLeftover) {
HWTEST_F(EnqueueFillBufferCmdTests, GivenLeftLeftoverWhenFillingBufferThenFillBufferLeftLeftoverKernelUsed) {
auto patternAllocation = context.getMemoryManager()->allocateGraphicsMemoryWithProperties(MockAllocationProperties{context.getDevice(0)->getRootDeviceIndex(), EnqueueFillBufferTraits::patternSize});
EnqueueFillBufferHelper<>::enqueueFillBuffer(pCmdQ, buffer);