90 lines
3.3 KiB
C++
90 lines
3.3 KiB
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/debug_settings/debug_settings_manager.h"
|
|
#include "runtime/gmm_helper/gmm.h"
|
|
#include "test.h"
|
|
#include "unit_tests/os_interface/windows/mock_wddm_allocation.h"
|
|
#include "unit_tests/utilities/file_logger_tests.h"
|
|
|
|
using namespace NEO;
|
|
|
|
TEST(FileLogger, GivenLogAllocationMemoryPoolFlagThenLogsCorrectInfo) {
|
|
std::string testFile = "testfile";
|
|
DebugVariables flags;
|
|
flags.LogAllocationMemoryPool.set(true);
|
|
FullyEnabledFileLogger fileLogger(testFile, flags);
|
|
|
|
// Log file not created
|
|
bool logFileCreated = fileExists(fileLogger.getLogFileName());
|
|
EXPECT_FALSE(logFileCreated);
|
|
|
|
MockWddmAllocation allocation;
|
|
allocation.handle = 4;
|
|
allocation.setAllocationType(GraphicsAllocation::AllocationType::BUFFER);
|
|
allocation.memoryPool = MemoryPool::System64KBPages;
|
|
auto gmm = std::make_unique<Gmm>(nullptr, 0, false);
|
|
allocation.setDefaultGmm(gmm.get());
|
|
allocation.getDefaultGmm()->resourceParams.Flags.Info.NonLocalOnly = 0;
|
|
|
|
fileLogger.logAllocation(&allocation);
|
|
|
|
std::thread::id thisThread = std::this_thread::get_id();
|
|
|
|
std::stringstream threadIDCheck;
|
|
threadIDCheck << " ThreadID: " << thisThread;
|
|
|
|
std::stringstream memoryPoolCheck;
|
|
memoryPoolCheck << " MemoryPool: " << allocation.getMemoryPool();
|
|
|
|
if (fileLogger.wasFileCreated(fileLogger.getLogFileName())) {
|
|
auto str = fileLogger.getFileString(fileLogger.getLogFileName());
|
|
EXPECT_TRUE(str.find(threadIDCheck.str()) != std::string::npos);
|
|
EXPECT_TRUE(str.find("Handle: 4") != std::string::npos);
|
|
EXPECT_TRUE(str.find(memoryPoolCheck.str()) != std::string::npos);
|
|
EXPECT_TRUE(str.find("AllocationType: BUFFER") != std::string::npos);
|
|
}
|
|
}
|
|
|
|
TEST(FileLogger, GivenLogAllocationMemoryPoolFlagSetFalseThenAllocationIsNotLogged) {
|
|
std::string testFile = "testfile";
|
|
DebugVariables flags;
|
|
flags.LogAllocationMemoryPool.set(false);
|
|
FullyEnabledFileLogger fileLogger(testFile, flags);
|
|
|
|
// Log file not created
|
|
bool logFileCreated = fileExists(fileLogger.getLogFileName());
|
|
EXPECT_FALSE(logFileCreated);
|
|
|
|
MockWddmAllocation allocation;
|
|
allocation.handle = 4;
|
|
allocation.setAllocationType(GraphicsAllocation::AllocationType::BUFFER);
|
|
allocation.memoryPool = MemoryPool::System64KBPages;
|
|
auto gmm = std::make_unique<Gmm>(nullptr, 0, false);
|
|
allocation.setDefaultGmm(gmm.get());
|
|
allocation.getDefaultGmm()->resourceParams.Flags.Info.NonLocalOnly = 0;
|
|
|
|
fileLogger.logAllocation(&allocation);
|
|
|
|
std::thread::id thisThread = std::this_thread::get_id();
|
|
|
|
std::stringstream threadIDCheck;
|
|
threadIDCheck << " ThreadID: " << thisThread;
|
|
|
|
std::stringstream memoryPoolCheck;
|
|
memoryPoolCheck << " MemoryPool: " << allocation.getMemoryPool();
|
|
|
|
if (fileLogger.wasFileCreated(fileLogger.getLogFileName())) {
|
|
auto str = fileLogger.getFileString(fileLogger.getLogFileName());
|
|
EXPECT_FALSE(str.find(threadIDCheck.str()) != std::string::npos);
|
|
EXPECT_FALSE(str.find("Handle: 4") != std::string::npos);
|
|
EXPECT_FALSE(str.find(memoryPoolCheck.str()) != std::string::npos);
|
|
EXPECT_FALSE(str.find("AllocationType: BUFFER") != std::string::npos);
|
|
EXPECT_FALSE(str.find("NonLocalOnly: 0") != std::string::npos);
|
|
}
|
|
}
|