EXSWHTEC-223 - Update Coverage tool (#339)

- Apply clang-format on Coverage tool and add blue color for deprecated Modules
- Change color from blue to gray for deprecated modules
- Adjust the color of green
This commit is contained in:
milos-mozetic
2023-07-11 10:40:40 +02:00
committed by GitHub
parent bf50c2d2d8
commit 0c7fa43b5e
12 changed files with 1335 additions and 261 deletions
+24 -11
View File
@@ -22,10 +22,11 @@ THE SOFTWARE.
#include "reportGenerators.h"
int main(int argc, char** argv)
{
int main(int argc, char** argv) {
if (argc != 2) {
std::cout << "Please provide the path to the cloned HIP/include/ directory as an argument! Only one argument supported." << std::endl;
std::cout << "Please provide the path to the cloned HIP/include/ directory as an argument! "
"Only one argument supported."
<< std::endl;
std::cout << "\tExample: ./generateHipAPICoverage /workspace/user1/HIP/include/" << std::endl;
return -1;
}
@@ -34,33 +35,44 @@ int main(int argc, char** argv)
Relative paths to all needed files, as it is expected that the application
is called from the HIP/tests/catch/coverage directory.
*/
std::string hip_api_header_file{findAbsolutePathOfFile(hip_include_path + "/hip/hip_runtime_api.h")};
std::string hip_api_header_file{
findAbsolutePathOfFile(hip_include_path + "/hip/hip_runtime_api.h")};
std::string hip_rtc_header_file{findAbsolutePathOfFile(hip_include_path + "/hip/hiprtc.h")};
std::string tests_root_directory{findAbsolutePathOfFile("../../catch")};
std::string device_api_file{"device_api_list.txt"};
std::vector<std::string> api_group_names;
// Extract all HIP API declarations from the HIP API header file.
std::vector<HipAPI> hip_apis{extractHipAPIs(hip_api_header_file, api_group_names, false)};
std::cout << "Number of detected HIP APIs from " << hip_api_header_file << ": " << hip_apis.size() << std::endl;
std::cout << "Number of detected HIP APIs from " << hip_api_header_file << ": " << hip_apis.size()
<< std::endl;
std::vector<HipAPI> hip_rtc_apis{extractHipAPIs(hip_rtc_header_file, api_group_names, true)};
std::cout << "Number of detected HIP APIs from " << hip_rtc_header_file << ": " << hip_rtc_apis.size() << std::endl;
std::cout << "Number of detected HIP APIs from " << hip_rtc_header_file << ": "
<< hip_rtc_apis.size() << std::endl;
hip_apis.insert(hip_apis.end(), hip_rtc_apis.begin(), hip_rtc_apis.end());
std::vector<HipAPI> device_apis{extractDeviceAPIs(device_api_file, api_group_names)};
std::cout << "Number of detected device APIs from " << device_api_file << ": "
<< device_apis.size() << std::endl;
hip_apis.insert(hip_apis.end(), device_apis.begin(), device_apis.end());
// Extract all test module .cc files that shall be used for API searching.
std::cout << "Searching for HIP API calls in source files within " << tests_root_directory << "." << std::endl;
std::cout << "Searching for HIP API calls in source files within " << tests_root_directory << "."
<< std::endl;
std::vector<std::string> test_module_files{extractTestModuleFiles(tests_root_directory)};
// Search for each HIP API in the extracted test .cc files.
for(HipAPI& hip_api: hip_apis) {
for (HipAPI& hip_api : hip_apis) {
searchForAPI(hip_api, test_module_files);
}
std::vector<HipAPIGroup> hip_api_groups;
for (auto const& api_group_name: api_group_names) {
for (auto const& api_group_name : api_group_names) {
HipAPIGroup hip_api_group{api_group_name, hip_apis};
// Avoid having duplicated groups.
if (std::find(hip_api_groups.begin(), hip_api_groups.end(), hip_api_group) == hip_api_groups.end()) {
if (std::find(hip_api_groups.begin(), hip_api_groups.end(), hip_api_group) ==
hip_api_groups.end()) {
hip_api_groups.push_back(hip_api_group);
}
}
@@ -68,7 +80,8 @@ int main(int argc, char** argv)
std::cout << "Generating XML report files." << std::endl;
generateXMLReportFiles(hip_apis, hip_api_groups);
std::cout << "Generating HTML report files." << std::endl;
generateHTMLReportFiles(hip_apis, hip_api_groups, tests_root_directory, hip_api_header_file, hip_rtc_header_file);
generateHTMLReportFiles(hip_apis, hip_api_groups, tests_root_directory, hip_api_header_file,
hip_rtc_header_file);
return 0;
}