Signed-off-by:黄国辉<huangguohui6@huawei.com>

This commit is contained in:
黄国辉 2024-07-03 11:32:42 +08:00
parent ccf24c1926
commit 3f79d1f88a
8 changed files with 2 additions and 42 deletions

8
.idea/.gitignore vendored
View File

@ -1,8 +0,0 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -1,6 +0,0 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/testfwk_developer_test.iml" filepath="$PROJECT_DIR$/.idea/testfwk_developer_test.iml" />
</modules>
</component>
</project>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="PyDocumentationSettings">
<option name="format" value="PLAIN" />
<option name="myDocStringFormat" value="Plain" />
</component>
</module>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@ -111,7 +111,7 @@ def execute_code_cov_tools(developer_path):
coverage_command("dos2unix %s" % llvm_gcov_path)
coverage_command("chmod 777 %s" % llvm_gcov_path)
tools_path = os.path.join(
developer_path, "local_coverage/code_coverage/mutilProcess_CodeCoverage.py"
developer_path, "local_coverage/code_coverage/multiprocess_code_coverage.py"
)
coverage_command("python3 %s" % tools_path)
@ -150,7 +150,7 @@ def execute_interface_cov_tools(partname_str, developer_path):
interface_path = os.path.join(
developer_path,
"local_coverage/interface_coverage/interfaceCoverage_gcov_lcov.py"
"local_coverage/interface_coverage/interface_coverage_gcov_lcov.py"
)
subprocess.run("python3 %s %s" % (interface_path, partname_str), shell=True)