ClangTools/Debugger: Fix resource name clash

The two plugins plugins added resource files which were referenced with
the same name, namely

    :/unit-tests

Make the names unique.

Change-Id: If63e762663f3f61b15f826d76ffcd2eb66873db7
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Nikolai Kosjar
2019-11-28 16:05:38 +01:00
parent 5e4f6a9bb3
commit 202aa06d7c
4 changed files with 4 additions and 4 deletions

View File

@@ -70,7 +70,7 @@ void ClangToolsUnitTests::initTestCase()
if (Core::ICore::clangExecutable(CLANG_BINDIR).isEmpty())
QSKIP("No clang suitable for analyzing found");
m_tmpDir = new Tests::TemporaryCopiedDir(QLatin1String(":/unit-tests"));
m_tmpDir = new Tests::TemporaryCopiedDir(":/clangtools/unit-tests");
QVERIFY(m_tmpDir->isValid());
}