refactor: add NOLINT for pending problems

Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2024-10-10 10:46:04 +00:00
committed by Compute-Runtime-Automation
parent d433fd585a
commit 00aedcaed4
30 changed files with 47 additions and 47 deletions

View File

@@ -32,7 +32,7 @@ struct AppResourceTests : public MockExecutionEnvironmentTagTest {
};
TEST_F(AppResourceTests, givenIncorrectGraphicsAllocationTypeWhenGettingResourceTagThenNOTFOUNDIsReturned) {
auto tag = AppResourceHelper::getResourceTagStr(static_cast<AllocationType>(999));
auto tag = AppResourceHelper::getResourceTagStr(static_cast<AllocationType>(999)); // NOLINT(clang-analyzer-optin.core.EnumCastOutOfRange), NEO-12901
EXPECT_STREQ(tag, "NOTFOUND");
}