/* * Copyright (C) 2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/command_stream/linear_stream.h" #include "shared/source/helpers/state_base_address.h" #include "shared/source/indirect_heap/indirect_heap.h" #include "shared/test/common/fixtures/device_fixture.h" #include "shared/test/common/helpers/debug_manager_state_restore.h" #include "shared/test/common/mocks/mock_graphics_allocation.h" #include "shared/test/common/test_macros/test.h" struct SBATest : public NEO::DeviceFixture, public ::testing::Test { void SetUp() override { NEO::DeviceFixture::SetUp(); size_t sizeStream = 512; size_t alignmentStream = 0x1000; sshBuffer = alignedMalloc(sizeStream, alignmentStream); ASSERT_NE(nullptr, sshBuffer); ssh.replaceBuffer(sshBuffer, sizeStream); auto graphicsAllocation = new MockGraphicsAllocation(sshBuffer, sizeStream); ssh.replaceGraphicsAllocation(graphicsAllocation); linearStreamBuffer = alignedMalloc(sizeStream, alignmentStream); commandStream.replaceBuffer(linearStreamBuffer, alignmentStream); } void TearDown() override { alignedFree(linearStreamBuffer); delete ssh.getGraphicsAllocation(); alignedFree(sshBuffer); NEO::DeviceFixture::TearDown(); } IndirectHeap ssh = {nullptr}; void *sshBuffer = nullptr; void *linearStreamBuffer = nullptr; DebugManagerStateRestore restorer; LinearStream commandStream; };