test: Remove resetCommandStreamReceiver from tests

Related-To: NEO-3927
Signed-off-by: Kindracki, Jakub Tomasz <jakub.tomasz.kindracki@intel.com>
This commit is contained in:
Kindracki, Jakub Tomasz
2025-05-27 17:24:03 +00:00
committed by Compute-Runtime-Automation
parent 1dfc9227c4
commit d0234c0bef
19 changed files with 407 additions and 276 deletions

View File

@@ -87,7 +87,7 @@ class MockCsrBase : public UltCommandStreamReceiver<GfxFamily> {
int32_t flushTaskStamp;
uint32_t waitForTaskCountWithKmdNotifyFallbackCalled = 0;
bool processEvictionCalled = false;
int32_t defaultExecStamp = 0;
int32_t defaultExecStamp;
};
template <typename GfxFamily>
@@ -108,6 +108,8 @@ class MockCsrAub : public MockCsrBase<GfxFamily> {
CommandStreamReceiverType getType() const override {
return CommandStreamReceiverType::aub;
}
int32_t defaultExecStamp = 1;
};
template <typename GfxFamily>
@@ -191,6 +193,7 @@ class MockCsr : public MockCsrBase<GfxFamily> {
bool slmUsedInLastFlushTask = false;
TaskCountType lastTaskLevelToFlushTask = 0;
int32_t defaultExecStamp = 0;
};
template <typename GfxFamily>