aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/clangquerygatherer-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/unittest/clangquerygatherer-test.cpp')
-rw-r--r--tests/unit/unittest/clangquerygatherer-test.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/tests/unit/unittest/clangquerygatherer-test.cpp b/tests/unit/unittest/clangquerygatherer-test.cpp
index 9c575f6a0f..b0ea9cb3e0 100644
--- a/tests/unit/unittest/clangquerygatherer-test.cpp
+++ b/tests/unit/unittest/clangquerygatherer-test.cpp
@@ -87,13 +87,22 @@ protected:
Utils::SmallString sourceContent{"#include \"query_simplefunction.h\"\nvoid f() {}"};
FileContainer source{{TESTDATA_DIR, "query_simplefunction.cpp"},
sourceContent.clone(),
- {"cc", toNativePath(TESTDATA_DIR"/query_simplefunction.cpp"), "-I", TESTDATA_DIR}};
+ {"cc",
+ toNativePath(TESTDATA_DIR "/query_simplefunction.cpp").path(),
+ "-I",
+ TESTDATA_DIR}};
FileContainer source2{{TESTDATA_DIR, "query_simplefunction2.cpp"},
{},
- {"cc", toNativePath(TESTDATA_DIR"/query_simplefunction2.cpp"), "-I", TESTDATA_DIR}};
+ {"cc",
+ toNativePath(TESTDATA_DIR "/query_simplefunction2.cpp").path(),
+ "-I",
+ TESTDATA_DIR}};
FileContainer source3{{TESTDATA_DIR, "query_simplefunction3.cpp"},
{},
- {"cc", toNativePath(TESTDATA_DIR"/query_simplefunction3.cpp"), "-I", TESTDATA_DIR}};
+ {"cc",
+ toNativePath(TESTDATA_DIR "/query_simplefunction3.cpp").path(),
+ "-I",
+ TESTDATA_DIR}};
Utils::SmallString unsavedContent{"void f();"};
FileContainer unsaved{{TESTDATA_DIR, "query_simplefunction.h"},
unsavedContent.clone(),