Remove not needed hwHelper

Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2021-08-11 14:18:41 +00:00
committed by Compute-Runtime-Automation
parent 5a75f4b7e1
commit 582a3620a2
6 changed files with 3 additions and 30 deletions

View File

@ -60,7 +60,6 @@ class AUBCommandStreamFixture : public CommandStreamFixture {
if (testMode == TestMode::AubTestsWithTbx) {
auto tbxCsr = static_cast<CommandStreamReceiverSimulatedCommonHw<FamilyType> *>(pCommandStreamReceiver);
EXPECT_TRUE(tbxCsr->expectMemoryEqual(gfxAddress, srcAddress, length));
csr = static_cast<CommandStreamReceiverWithAUBDump<TbxCommandStreamReceiverHw<FamilyType>> *>(pCommandStreamReceiver)->aubCSR.get();
}
@ -76,7 +75,6 @@ class AUBCommandStreamFixture : public CommandStreamFixture {
if (testMode == TestMode::AubTestsWithTbx) {
auto tbxCsr = static_cast<CommandStreamReceiverSimulatedCommonHw<FamilyType> *>(pCommandStreamReceiver);
EXPECT_TRUE(tbxCsr->expectMemoryNotEqual(gfxAddress, srcAddress, length));
csr = static_cast<CommandStreamReceiverWithAUBDump<TbxCommandStreamReceiverHw<FamilyType>> *>(pCommandStreamReceiver)->aubCSR.get();
}