Skip to content

Commit 7b31ad8

Browse files
committed
CppCheck: actually generate analyzer information for markup files
1 parent 83ed0fc commit 7b31ad8

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

lib/cppcheck.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -693,8 +693,12 @@ unsigned int CppCheck::checkFile(const FileWithDetails& file, const std::string
693693
}
694694
mUnusedFunctionsCheck->parseTokens(tokenizer, mSettings);
695695

696-
// TODO: open file so we can set the fileinfo
696+
// TODO: how to get the proper tokenlist to generate the proper hash?
697+
const std::size_t hash = time(nullptr); // calculateHash(tokenizer.list, mSettings);
698+
std::list<ErrorMessage> errors;
699+
mAnalyzerInformation.analyzeFile(mSettings.buildDir, file.spath(), cfgname, hash, errors);
697700
mAnalyzerInformation.setFileInfo("CheckUnusedFunctions", mUnusedFunctionsCheck->analyzerInfo());
701+
mAnalyzerInformation.close();
698702
}
699703
return EXIT_SUCCESS;
700704
}

test/cli/qml_test.py

-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# python3 -m pytest test-qml.py
33

44
import os
5-
import pytest
65
from testutils import cppcheck
76

87
__script_dir = os.path.dirname(os.path.abspath(__file__))
@@ -53,8 +52,6 @@ def test_unused_functions_j():
5352
assert ret == 0, stdout
5453

5554

56-
# TODO: fillSampleData is not unused
57-
@pytest.mark.xfail(strict=True)
5855
def test_unused_functions_builddir(tmpdir):
5956
build_dir = os.path.join(tmpdir, 'b1')
6057
os.mkdir(build_dir)

0 commit comments

Comments
 (0)