mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Improve handling of remote sync saving
* Fixes sporadic failures on gui tests on Windows * Corrects inability to write to temporary config file while running tests * Corrects errors when using MockRemoteProcess due to missing functions
This commit is contained in:
parent
9e64570e3a
commit
fcb32efd05
4 changed files with 21 additions and 6 deletions
|
@ -624,11 +624,13 @@ void Config::createTempFileInstance()
|
|||
if (m_instance) {
|
||||
delete m_instance;
|
||||
}
|
||||
auto* tmpFile = new QTemporaryFile();
|
||||
bool openResult = tmpFile->open();
|
||||
Q_ASSERT(openResult);
|
||||
Q_UNUSED(openResult);
|
||||
m_instance = new Config(tmpFile->fileName(), "", qApp);
|
||||
auto tmpFileName = QString("%1/%2_settings.XXXXXX").arg(QDir::tempPath(), QCoreApplication::applicationName());
|
||||
auto tmpFile = new QTemporaryFile(tmpFileName);
|
||||
if (!tmpFile->open()) {
|
||||
Q_ASSERT_X(false, __func__, "Failed to create temporary config settings file");
|
||||
}
|
||||
tmpFile->close();
|
||||
m_instance = new Config(tmpFileName, "", qApp);
|
||||
tmpFile->setParent(m_instance);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue