Silence clang-tidy warnings.

Change-Id: Ia71a126fefa598d4fa0e2b2fe51fb7d8574f0b68
Signed-off-by: Pawel Cieslak <pawel.cieslak@intel.com>
This commit is contained in:
Pawel Cieslak
2020-04-06 17:47:25 +02:00
committed by sys_ocldev
parent dc110e2254
commit 1544f23281
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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) {