Skip to content

Commit 649cd34

Browse files
Rename TestBodyImpl->testBodyImpl
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
1 parent d166683 commit 649cd34

16 files changed

+48
-48
lines changed

opencl/test/unit_test/kernel/cache_flush_tests.inl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ struct L3ControlPolicy : CmdValidator {
5151
template <typename FamilyType>
5252
class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCacheFlushCommand : public HardwareCommandsTest {
5353
public:
54-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
54+
void testBodyImpl() {
5555
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
5656
using L3_CONTROL_WITHOUT_POST_SYNC = typename FamilyType::L3_CONTROL;
5757

@@ -87,7 +87,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequirin
8787
template <typename FamilyType>
8888
class GivenCacheFlushAfterWalkerEnabledAndProperSteppingIsSetWhenKernelArgIsSetAsCacheFlushRequiredAndA0SteppingIsDisabledThenExpectCacheFlushCommand : public HardwareCommandsTest {
8989
public:
90-
void TestBodyImpl(bool isA0Stepping) { // NOLINT(readability-identifier-naming)
90+
void testBodyImpl(bool isA0Stepping) {
9191
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
9292
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
9393
using L3_CONTROL_WITHOUT_POST_SYNC = typename FamilyType::L3_CONTROL;
@@ -134,7 +134,7 @@ class GivenCacheFlushAfterWalkerEnabledAndProperSteppingIsSetWhenKernelArgIsSetA
134134
template <typename FamilyType>
135135
class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpectCacheFlushCommand : public HardwareCommandsTest {
136136
public:
137-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
137+
void testBodyImpl() {
138138
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
139139
using L3_CONTROL_WITHOUT_POST_SYNC = typename FamilyType::L3_CONTROL;
140140
DebugManagerStateRestore dbgRestore;
@@ -168,7 +168,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpect
168168
template <typename FamilyType>
169169
class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentAndPostSyncRequiredThenExpectProperCacheFlushCommand : public HardwareCommandsTest {
170170
public:
171-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
171+
void testBodyImpl() {
172172
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
173173
using L3_CONTROL_WITH_POST_SYNC = typename FamilyType::L3_CONTROL;
174174

@@ -208,7 +208,7 @@ using EnqueueKernelTest = Test<EnqueueKernelFixture>;
208208
template <typename FamilyType>
209209
class GivenCacheFlushAfterWalkerEnabledAndProperSteppingIsSetWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker : public EnqueueKernelTest {
210210
public:
211-
void TestBodyImpl(bool isA0Stepping) { // NOLINT(readability-identifier-naming)
211+
void testBodyImpl(bool isA0Stepping) {
212212
using WALKER = typename FamilyType::WALKER_TYPE;
213213
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
214214
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
@@ -273,7 +273,7 @@ class GivenCacheFlushAfterWalkerEnabledAndProperSteppingIsSetWhenAllocationRequi
273273
template <typename FamilyType>
274274
class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker : public EnqueueKernelTest {
275275
public:
276-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
276+
void testBodyImpl() {
277277
using WALKER = typename FamilyType::WALKER_TYPE;
278278
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
279279
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
@@ -329,7 +329,7 @@ class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequires
329329
template <typename FamilyType>
330330
class GivenCacheFlushAfterWalkerDisabledAndProperSteppingIsSetWhenAllocationRequiresCacheFlushThenFlushCommandNotPresentAfterWalker : public EnqueueKernelTest {
331331
public:
332-
void TestBodyImpl(bool isA0Stepping) { // NOLINT(readability-identifier-naming)
332+
void testBodyImpl(bool isA0Stepping) {
333333
using WALKER = typename FamilyType::WALKER_TYPE;
334334
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
335335
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
@@ -381,7 +381,7 @@ class GivenCacheFlushAfterWalkerDisabledAndProperSteppingIsSetWhenAllocationRequ
381381
template <typename FamilyType>
382382
class GivenCacheResourceSurfacesWhenprocessingCacheFlushThenExpectProperCacheFlushCommand : public EnqueueKernelTest {
383383
public:
384-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
384+
void testBodyImpl() {
385385

386386
using L3_CONTROL_WITHOUT_POST_SYNC = typename FamilyType::L3_CONTROL;
387387

opencl/test/unit_test/kernel/cache_flush_xehp_and_later_tests.inl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ struct L3ControlPolicy : CmdValidator {
4949
template <typename FamilyType>
5050
class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCorrectCommandSize : public HardwareCommandsTest {
5151
public:
52-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
52+
void testBodyImpl() {
5353
using COMPUTE_WALKER = typename FamilyType::COMPUTE_WALKER;
5454
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
5555
using L3_CONTROL = typename FamilyType::L3_CONTROL;
@@ -81,7 +81,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequirin
8181
template <typename FamilyType>
8282
class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCacheFlushCommand : public HardwareCommandsTest {
8383
public:
84-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
84+
void testBodyImpl() {
8585
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
8686
using L3_CONTROL = typename FamilyType::L3_CONTROL;
8787

@@ -113,7 +113,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequirin
113113
template <typename FamilyType>
114114
class GivenCacheFlushAfterWalkerEnabledWhenKernelArgIsSetAsCacheFlushRequiredThenExpectCacheFlushCommand : public HardwareCommandsTest {
115115
public:
116-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
116+
void testBodyImpl() {
117117
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
118118
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
119119
using L3_CONTROL = typename FamilyType::L3_CONTROL;
@@ -152,7 +152,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenKernelArgIsSetAsCacheFlushRequiredThe
152152
template <typename FamilyType>
153153
class GivenCacheFlushAfterWalkerEnabledWhenNoGlobalSurfaceSvmAllocationKernelArgRequireCacheFlushThenExpectNoCacheFlushCommand : public HardwareCommandsTest {
154154
public:
155-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
155+
void testBodyImpl() {
156156
DebugManagerStateRestore dbgRestore;
157157
DebugManager.flags.EnableCacheFlushAfterWalker.set(1);
158158

@@ -172,7 +172,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenNoGlobalSurfaceSvmAllocationKernelArg
172172
template <typename FamilyType>
173173
class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpectCacheFlushCommand : public HardwareCommandsTest {
174174
public:
175-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
175+
void testBodyImpl() {
176176
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
177177
using L3_CONTROL = typename FamilyType::L3_CONTROL;
178178
DebugManagerStateRestore dbgRestore;
@@ -202,7 +202,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpect
202202
template <typename FamilyType>
203203
class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentAndPostSyncRequiredThenExpectProperCacheFlushCommand : public HardwareCommandsTest {
204204
public:
205-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
205+
void testBodyImpl() {
206206
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
207207
using L3_CONTROL = typename FamilyType::L3_CONTROL;
208208

@@ -240,7 +240,7 @@ using EnqueueKernelTest = Test<EnqueueKernelFixture>;
240240
template <typename FamilyType>
241241
class GivenCacheFlushAfterWalkerEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker : public EnqueueKernelTest {
242242
public:
243-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
243+
void testBodyImpl() {
244244
using WALKER = typename FamilyType::WALKER_TYPE;
245245
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
246246
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
@@ -295,7 +295,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenAllocationRequiresCacheFlushThenFlush
295295
template <typename FamilyType>
296296
class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker : public EnqueueKernelTest {
297297
public:
298-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
298+
void testBodyImpl() {
299299
using WALKER = typename FamilyType::WALKER_TYPE;
300300
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
301301
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
@@ -352,7 +352,7 @@ class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequires
352352
template <typename FamilyType>
353353
class GivenCacheFlushAfterWalkerDisabledWhenAllocationRequiresCacheFlushThenFlushCommandNotPresentAfterWalker : public EnqueueKernelTest {
354354
public:
355-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
355+
void testBodyImpl() {
356356
using WALKER = typename FamilyType::WALKER_TYPE;
357357
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
358358
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
@@ -400,7 +400,7 @@ class GivenCacheFlushAfterWalkerDisabledWhenAllocationRequiresCacheFlushThenFlus
400400
template <typename FamilyType>
401401
class GivenCacheFlushAfterWalkerEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenAtLeatsTwoFlushCommandPresentAfterWalker : public EnqueueKernelTest {
402402
public:
403-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
403+
void testBodyImpl() {
404404
using WALKER = typename FamilyType::WALKER_TYPE;
405405
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
406406
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
@@ -452,7 +452,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenMoreThan126AllocationRangesRequiresCa
452452
template <typename FamilyType>
453453
class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenExpectFlushWithOutPostSyncAndThenWithPostSync : public EnqueueKernelTest {
454454
public:
455-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
455+
void testBodyImpl() {
456456
using WALKER = typename FamilyType::WALKER_TYPE;
457457
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
458458
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
@@ -525,7 +525,7 @@ class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenMoreThan126Allocat
525525
template <typename FamilyType>
526526
class GivenCacheFlushAfterWalkerEnabledWhen126AllocationRangesRequiresCacheFlushThenExpectOneFlush : public EnqueueKernelTest {
527527
public:
528-
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
528+
void testBodyImpl() {
529529
using WALKER = typename FamilyType::WALKER_TYPE;
530530
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
531531
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;

opencl/test/unit_test/xe_hp_core/xehp/cache_flush_tests_xehp.inl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021 Intel Corporation
2+
* Copyright (C) 2021-2022 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -16,54 +16,54 @@ using namespace NEO;
1616

1717
using GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCacheFlushCommandXEHP = GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCacheFlushCommand<XeHpFamily>;
1818
XEHPTEST_F(GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCacheFlushCommandXEHP, I) {
19-
TestBodyImpl();
19+
testBodyImpl();
2020
}
2121

2222
using GivenCacheFlushAfterWalkerEnabledWhenKernelArgIsSetAsCacheFlushRequiredThenExpectCacheFlushCommandXEHP = GivenCacheFlushAfterWalkerEnabledWhenKernelArgIsSetAsCacheFlushRequiredThenExpectCacheFlushCommand<XeHpFamily>;
2323
XEHPTEST_F(GivenCacheFlushAfterWalkerEnabledWhenKernelArgIsSetAsCacheFlushRequiredThenExpectCacheFlushCommandXEHP, I) {
24-
TestBodyImpl();
24+
testBodyImpl();
2525
}
2626

2727
using GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpectCacheFlushCommandXEHP = GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpectCacheFlushCommand<XeHpFamily>;
2828
XEHPTEST_F(GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpectCacheFlushCommandXEHP, I) {
29-
TestBodyImpl();
29+
testBodyImpl();
3030
}
3131

3232
using GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentAndPostSyncRequiredThenExpectProperCacheFlushCommandXEHP = GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentAndPostSyncRequiredThenExpectProperCacheFlushCommand<XeHpFamily>;
3333
XEHPTEST_F(GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentAndPostSyncRequiredThenExpectProperCacheFlushCommandXEHP, I) {
34-
TestBodyImpl();
34+
testBodyImpl();
3535
}
3636

3737
using GivenCacheFlushAfterWalkerEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalkerXEHP = GivenCacheFlushAfterWalkerEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker<XeHpFamily>;
3838
XEHPTEST_F(GivenCacheFlushAfterWalkerEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalkerXEHP, I) {
39-
TestBodyImpl();
39+
testBodyImpl();
4040
}
4141

4242
using GivenCacheFlushAfterWalkerDisabledWhenAllocationRequiresCacheFlushThenFlushCommandNotPresentAfterWalkerXEHP = GivenCacheFlushAfterWalkerDisabledWhenAllocationRequiresCacheFlushThenFlushCommandNotPresentAfterWalker<XeHpFamily>;
4343
XEHPTEST_F(GivenCacheFlushAfterWalkerDisabledWhenAllocationRequiresCacheFlushThenFlushCommandNotPresentAfterWalkerXEHP, I) {
44-
TestBodyImpl();
44+
testBodyImpl();
4545
}
4646

4747
using GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalkerXEHP = GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker<XeHpFamily>;
4848
XEHPTEST_F(GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalkerXEHP, I) {
49-
TestBodyImpl();
49+
testBodyImpl();
5050
}
5151

5252
using GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCorrectCommandSizeXEHP = GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCorrectCommandSize<XeHpFamily>;
5353
XEHPTEST_F(GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCorrectCommandSizeXEHP, I) {
54-
TestBodyImpl();
54+
testBodyImpl();
5555
}
5656
using GivenCacheFlushAfterWalkerEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenAtLeatsTwoFlushCommandPresentAfterWalkerXEHP = GivenCacheFlushAfterWalkerEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenAtLeatsTwoFlushCommandPresentAfterWalker<XeHpFamily>;
5757
XEHPTEST_F(GivenCacheFlushAfterWalkerEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenAtLeatsTwoFlushCommandPresentAfterWalkerXEHP, I) {
58-
TestBodyImpl();
58+
testBodyImpl();
5959
}
6060
using GivenCacheFlushAfterWalkerEnabledWhen126AllocationRangesRequiresCacheFlushThenExpectOneFlushXEHP = GivenCacheFlushAfterWalkerEnabledWhen126AllocationRangesRequiresCacheFlushThenExpectOneFlush<XeHpFamily>;
6161
XEHPTEST_F(GivenCacheFlushAfterWalkerEnabledWhen126AllocationRangesRequiresCacheFlushThenExpectOneFlushXEHP, I) {
62-
TestBodyImpl();
62+
testBodyImpl();
6363
}
6464
using GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenExpectFlushWithOutPostSyncAndThenWithPostSyncXEHP = GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenExpectFlushWithOutPostSyncAndThenWithPostSync<XeHpFamily>;
6565
XEHPTEST_F(GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenExpectFlushWithOutPostSyncAndThenWithPostSyncXEHP, I) {
66-
TestBodyImpl();
66+
testBodyImpl();
6767
}
6868

6969
using CommandQueueHwCacheFlushTest = ::testing::Test;

shared/test/unit_test/gen11/simd_helper_tests_gen11.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ using namespace NEO;
1212
using TestSimdConfigSet = ::testing::Test;
1313

1414
GEN11TEST_F(TestSimdConfigSet, GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturnedGen11) {
15-
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::TestBodyImpl();
15+
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::testBodyImpl();
1616
}

shared/test/unit_test/gen12lp/simd_helper_tests_gen12lp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ using namespace NEO;
1212
using TestSimdConfigSet = ::testing::Test;
1313

1414
GEN12LPTEST_F(TestSimdConfigSet, GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturnedGen12LP) {
15-
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::TestBodyImpl();
15+
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::testBodyImpl();
1616
}

shared/test/unit_test/gen8/simd_helper_tests_gen8.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ using namespace NEO;
1212
using TestSimdConfigSet = ::testing::Test;
1313

1414
GEN8TEST_F(TestSimdConfigSet, GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturnedGen8) {
15-
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::TestBodyImpl();
15+
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::testBodyImpl();
1616
}

shared/test/unit_test/gen9/simd_helper_tests_gen9.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ using namespace NEO;
1212
using TestSimdConfigSet = ::testing::Test;
1313

1414
GEN9TEST_F(TestSimdConfigSet, GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturnedGen9) {
15-
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::TestBodyImpl();
15+
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::testBodyImpl();
1616
}

shared/test/unit_test/helpers/blit_commands_helper_tests.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -410,19 +410,19 @@ HWTEST2_F(BlitColorTests, givenCommandStreamAndPaternSizeEqualOneWhenCallToDispa
410410
size_t patternSize = 1;
411411
auto expecttedDepth = getColorDepth<FamilyType>(patternSize);
412412
GivenLinearStreamWhenCallDispatchBlitMemoryColorFillThenCorrectDepthIsProgrammed<FamilyType> test(pDevice);
413-
test.TestBodyImpl(patternSize, expecttedDepth);
413+
test.testBodyImpl(patternSize, expecttedDepth);
414414
}
415415
HWTEST2_F(BlitColorTests, givenCommandStreamAndPaternSizeEqualTwoWhenCallToDispatchMemoryFillThenColorDepthAreProgrammedCorrectly, BlitColor) {
416416
size_t patternSize = 2;
417417
auto expecttedDepth = getColorDepth<FamilyType>(patternSize);
418418
GivenLinearStreamWhenCallDispatchBlitMemoryColorFillThenCorrectDepthIsProgrammed<FamilyType> test(pDevice);
419-
test.TestBodyImpl(patternSize, expecttedDepth);
419+
test.testBodyImpl(patternSize, expecttedDepth);
420420
}
421421
HWTEST2_F(BlitColorTests, givenCommandStreamAndPaternSizeEqualFourWhenCallToDispatchMemoryFillThenColorDepthAreProgrammedCorrectly, BlitColor) {
422422
size_t patternSize = 4;
423423
auto expecttedDepth = getColorDepth<FamilyType>(patternSize);
424424
GivenLinearStreamWhenCallDispatchBlitMemoryColorFillThenCorrectDepthIsProgrammed<FamilyType> test(pDevice);
425-
test.TestBodyImpl(patternSize, expecttedDepth);
425+
test.testBodyImpl(patternSize, expecttedDepth);
426426
}
427427

428428
using BlitPlatforms = IsWithinProducts<IGFX_SKYLAKE, IGFX_TIGERLAKE_LP>;
@@ -456,7 +456,7 @@ HWTEST2_P(BlitFastColorTest, givenCommandStreamWhenCallToDispatchMemoryFillThenC
456456
auto patternSize = GetParam();
457457
auto expecttedDepth = getFastColorDepth<FamilyType>(patternSize);
458458
GivenLinearStreamWhenCallDispatchBlitMemoryColorFillThenCorrectDepthIsProgrammed<FamilyType> test(pDevice);
459-
test.TestBodyImpl(patternSize, expecttedDepth);
459+
test.testBodyImpl(patternSize, expecttedDepth);
460460
}
461461

462462
INSTANTIATE_TEST_CASE_P(size_t,

0 commit comments

Comments
 (0)