ClangPchManager: Introduce PchTasksMerger

So far no merging is happening but we will add it after the rest of the
pipeline is in shape.

Task-number: QTCREATORBUG-21381
Change-Id: I610c243eabcb305843ad6339fdc636b0c3966fc1
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
This commit is contained in:
Marco Bubke
2018-12-03 17:44:38 +01:00
parent 24ecd7fe6a
commit 96eb407266
16 changed files with 355 additions and 43 deletions

View File

@@ -32,6 +32,8 @@
#include <sqlitewritestatement.h>
#include <utf8string.h>
#include <utils/temporarydirectory.h>
#include <QSignalSpy>
#include <QTemporaryFile>
#include <QVariant>
@@ -127,7 +129,8 @@ TEST_F(SqliteDatabase, DatabaseIsInitializedIfDatabasePathExistsAtOpening)
TEST_F(SqliteDatabase, DatabaseIsNotInitializedIfDatabasePathDoesNotExistAtOpening)
{
Sqlite::Database database{Utils::PathString{QDir::tempPath() + "/database_does_not_exist.db"}};
Sqlite::Database database{Utils::PathString{Utils::TemporaryDirectory::masterDirectoryPath()
+ "/database_does_not_exist.db"}};
ASSERT_FALSE(database.isInitialized());
}