mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Silence clang-tidy warnings.
Change-Id: Ia71a126fefa598d4fa0e2b2fe51fb7d8574f0b68 Signed-off-by: Pawel Cieslak <pawel.cieslak@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
dc110e2254
commit
1544f23281
@@ -17,7 +17,7 @@ namespace L0 {
|
||||
namespace ult {
|
||||
|
||||
struct DeviceFixture {
|
||||
void SetUp() {
|
||||
void SetUp() { // NOLINT(readability-identifier-naming)
|
||||
neoDevice = NEO::MockDevice::createWithNewExecutionEnvironment<NEO::MockDevice>(NEO::defaultHwInfo.get());
|
||||
NEO::DeviceVector devices;
|
||||
devices.push_back(std::unique_ptr<NEO::Device>(neoDevice));
|
||||
@@ -26,7 +26,7 @@ struct DeviceFixture {
|
||||
device = driverHandle->devices[0];
|
||||
}
|
||||
|
||||
void TearDown() {
|
||||
void TearDown() { // NOLINT(readability-identifier-naming)
|
||||
}
|
||||
std::unique_ptr<Mock<L0::DriverHandleImp>> driverHandle;
|
||||
NEO::MockDevice *neoDevice = nullptr;
|
||||
|
||||
@@ -22,10 +22,10 @@ struct MockAubCenterFixture {
|
||||
MockAubCenterFixture() = default;
|
||||
MockAubCenterFixture(CommandStreamReceiverType commandStreamReceiverType) : commandStreamReceiverType(commandStreamReceiverType){};
|
||||
|
||||
void SetUp() {
|
||||
void SetUp() { // NOLINT(readability-identifier-naming)
|
||||
setMockAubCenter(*platform()->peekExecutionEnvironment()->rootDeviceEnvironments[0], commandStreamReceiverType);
|
||||
}
|
||||
void TearDown() {
|
||||
void TearDown() { // NOLINT(readability-identifier-naming)
|
||||
}
|
||||
|
||||
static void setMockAubCenter(RootDeviceEnvironment &rootDeviceEnvironment) {
|
||||
|
||||
Reference in New Issue
Block a user