We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac402ff commit c1be953Copy full SHA for c1be953
1 file changed
test/testsarif.cpp
@@ -282,11 +282,11 @@ int main() {
282
"./cppcheck",
283
"../bin/cppcheck",
284
"../../bin/cppcheck",
285
- "./cmake.output/bin/cppcheck", // CMake build from project root
286
- "../cmake.output/bin/cppcheck", // CMake build from test directory
+ "./cmake.output/bin/cppcheck",
+ "../cmake.output/bin/cppcheck",
287
"cppcheck" // fallback to PATH
288
};
289
-
+
290
std::string exe;
291
for (const auto& possibleExe : possibleExes) {
292
// Test if executable exists and is accessible
@@ -300,7 +300,7 @@ int main() {
300
break;
301
}
302
303
304
if (exe.empty()) {
305
std::remove(filename.c_str());
306
return "";
0 commit comments