MCPcopy Create free account
hub / github.com/bytedance/bolt / printCoverageMapForAll

Function printCoverageMapForAll

bolt/functions/CoverageUtil.cpp:414–425  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

412}
413
414void printCoverageMapForAll(const std::string& domain) {
415 auto scalarNames = readFunctionNamesFromFile("all_scalar_functions.txt");
416 std::sort(scalarNames.begin(), scalarNames.end());
417
418 auto aggNames = readFunctionNamesFromFile("all_aggregate_functions.txt");
419 std::sort(aggNames.begin(), aggNames.end());
420
421 auto windowNames = readFunctionNamesFromFile("all_window_functions.txt");
422 std::sort(windowNames.begin(), windowNames.end());
423
424 printCoverageMap(scalarNames, aggNames, windowNames, domain);
425}
426
427void printBoltFunctions(
428 const std::unordered_set<std::string>& linkBlockList,

Callers 2

mainFunction · 0.85
mainFunction · 0.85

Calls 4

printCoverageMapFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected