mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Rename TestBodyImpl->testBodyImpl
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
d16668300e
commit
649cd3441a
@ -51,7 +51,7 @@ struct L3ControlPolicy : CmdValidator {
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_CONTROL_WITHOUT_POST_SYNC = typename FamilyType::L3_CONTROL;
|
||||
|
||||
@ -87,7 +87,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequirin
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledAndProperSteppingIsSetWhenKernelArgIsSetAsCacheFlushRequiredAndA0SteppingIsDisabledThenExpectCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl(bool isA0Stepping) { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl(bool isA0Stepping) {
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
using L3_CONTROL_WITHOUT_POST_SYNC = typename FamilyType::L3_CONTROL;
|
||||
@ -134,7 +134,7 @@ class GivenCacheFlushAfterWalkerEnabledAndProperSteppingIsSetWhenKernelArgIsSetA
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpectCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_CONTROL_WITHOUT_POST_SYNC = typename FamilyType::L3_CONTROL;
|
||||
DebugManagerStateRestore dbgRestore;
|
||||
@ -168,7 +168,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpect
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentAndPostSyncRequiredThenExpectProperCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_CONTROL_WITH_POST_SYNC = typename FamilyType::L3_CONTROL;
|
||||
|
||||
@ -208,7 +208,7 @@ using EnqueueKernelTest = Test<EnqueueKernelFixture>;
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledAndProperSteppingIsSetWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl(bool isA0Stepping) { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl(bool isA0Stepping) {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
@ -273,7 +273,7 @@ class GivenCacheFlushAfterWalkerEnabledAndProperSteppingIsSetWhenAllocationRequi
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
@ -329,7 +329,7 @@ class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequires
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerDisabledAndProperSteppingIsSetWhenAllocationRequiresCacheFlushThenFlushCommandNotPresentAfterWalker : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl(bool isA0Stepping) { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl(bool isA0Stepping) {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
@ -381,7 +381,7 @@ class GivenCacheFlushAfterWalkerDisabledAndProperSteppingIsSetWhenAllocationRequ
|
||||
template <typename FamilyType>
|
||||
class GivenCacheResourceSurfacesWhenprocessingCacheFlushThenExpectProperCacheFlushCommand : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
|
||||
using L3_CONTROL_WITHOUT_POST_SYNC = typename FamilyType::L3_CONTROL;
|
||||
|
||||
|
@ -49,7 +49,7 @@ struct L3ControlPolicy : CmdValidator {
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCorrectCommandSize : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using COMPUTE_WALKER = typename FamilyType::COMPUTE_WALKER;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_CONTROL = typename FamilyType::L3_CONTROL;
|
||||
@ -81,7 +81,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequirin
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequiringThenExpectCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_CONTROL = typename FamilyType::L3_CONTROL;
|
||||
|
||||
@ -113,7 +113,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenSvmAllocationsSetAsCacheFlushRequirin
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenKernelArgIsSetAsCacheFlushRequiredThenExpectCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
using L3_CONTROL = typename FamilyType::L3_CONTROL;
|
||||
@ -152,7 +152,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenKernelArgIsSetAsCacheFlushRequiredThe
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenNoGlobalSurfaceSvmAllocationKernelArgRequireCacheFlushThenExpectNoCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
DebugManagerStateRestore dbgRestore;
|
||||
DebugManager.flags.EnableCacheFlushAfterWalker.set(1);
|
||||
|
||||
@ -172,7 +172,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenNoGlobalSurfaceSvmAllocationKernelArg
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpectCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_CONTROL = typename FamilyType::L3_CONTROL;
|
||||
DebugManagerStateRestore dbgRestore;
|
||||
@ -202,7 +202,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentThenExpect
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenProgramGlobalSurfacePresentAndPostSyncRequiredThenExpectProperCacheFlushCommand : public HardwareCommandsTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_CONTROL = typename FamilyType::L3_CONTROL;
|
||||
|
||||
@ -240,7 +240,7 @@ using EnqueueKernelTest = Test<EnqueueKernelFixture>;
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
@ -295,7 +295,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenAllocationRequiresCacheFlushThenFlush
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequiresCacheFlushThenFlushCommandPresentAfterWalker : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
@ -352,7 +352,7 @@ class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenAllocationRequires
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerDisabledWhenAllocationRequiresCacheFlushThenFlushCommandNotPresentAfterWalker : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
@ -400,7 +400,7 @@ class GivenCacheFlushAfterWalkerDisabledWhenAllocationRequiresCacheFlushThenFlus
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenAtLeatsTwoFlushCommandPresentAfterWalker : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
@ -452,7 +452,7 @@ class GivenCacheFlushAfterWalkerEnabledWhenMoreThan126AllocationRangesRequiresCa
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenMoreThan126AllocationRangesRequiresCacheFlushThenExpectFlushWithOutPostSyncAndThenWithPostSync : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
@ -525,7 +525,7 @@ class GivenCacheFlushAfterWalkerAndTimestampPacketsEnabledWhenMoreThan126Allocat
|
||||
template <typename FamilyType>
|
||||
class GivenCacheFlushAfterWalkerEnabledWhen126AllocationRangesRequiresCacheFlushThenExpectOneFlush : public EnqueueKernelTest {
|
||||
public:
|
||||
void TestBodyImpl() { // NOLINT(readability-identifier-naming)
|
||||
void testBodyImpl() {
|
||||
using WALKER = typename FamilyType::WALKER_TYPE;
|
||||
using PIPE_CONTROL = typename FamilyType::PIPE_CONTROL;
|
||||
using L3_FLUSH_ADDRESS_RANGE = typename FamilyType::L3_FLUSH_ADDRESS_RANGE;
|
||||
|
Reference in New Issue
Block a user