mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-23 11:42:31 +08:00
Change-Id: I34eb993b562c77f56d8fbd51a02ee266c1f76678 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
35 lines
702 B
C++
35 lines
702 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/command_stream/linear_stream.h"
|
|
|
|
#include "opencl/test/unit_test/mocks/mock_graphics_allocation.h"
|
|
#include "test.h"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
|
|
struct LinearStreamFixture {
|
|
LinearStreamFixture(void)
|
|
: gfxAllocation((void *)pCmdBuffer, sizeof(pCmdBuffer)), linearStream(&gfxAllocation) {
|
|
}
|
|
|
|
virtual void SetUp(void) {
|
|
}
|
|
|
|
virtual void TearDown(void) {
|
|
}
|
|
MockGraphicsAllocation gfxAllocation;
|
|
LinearStream linearStream;
|
|
uint32_t pCmdBuffer[1024];
|
|
};
|
|
|
|
typedef Test<LinearStreamFixture> LinearStreamTest;
|
|
} // namespace NEO
|