UnitTests: Use a temporary profile directory

This prevents Dolphin from modifying any file in the user directory.
This commit is contained in:
Léo Lam
2017-06-18 16:21:17 +02:00
parent 09457d3a42
commit 5243eae4e9
2 changed files with 12 additions and 3 deletions

View File

@ -3,9 +3,11 @@
// Refer to the license.txt file included.
#include <gtest/gtest.h>
#include <string>
#include <unordered_set>
#include "Common/CommonTypes.h"
#include "Common/FileUtil.h"
#include "Core/Config/Config.h"
#include "Core/HW/MMIO.h"
#include "UICommon/UICommon.h"
@ -31,7 +33,8 @@ TEST(UniqueID, UniqueEnough)
TEST(IsMMIOAddress, SpecialAddresses)
{
UICommon::SetUserDirectory("");
const std::string profile_path = File::CreateTempDir();
UICommon::SetUserDirectory(profile_path);
Config::Init();
SConfig::Init();
SConfig::GetInstance().bWii = true;
@ -56,6 +59,7 @@ TEST(IsMMIOAddress, SpecialAddresses)
SConfig::Shutdown();
Config::Shutdown();
File::DeleteDirRecursively(profile_path);
}
class MappingTest : public testing::Test