mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
UnitTests: Use a temporary profile directory
This prevents Dolphin from modifying any file in the user directory.
This commit is contained in:
parent
09457d3a42
commit
5243eae4e9
2 changed files with 12 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue