Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
eeb070e014 | |||
99927380d6 | |||
8fc81f1caa | |||
5f325c2d7e | |||
f65a5f58ee |
@@ -3,6 +3,9 @@ Lutin
|
||||
|
||||
`lutin` is a generic builder and package maker is a FREE software tool.
|
||||
|
||||
.. image:: https://badge.fury.io/py/lutin.png
|
||||
:target: https://pypi.python.org/pypi/lutin
|
||||
|
||||
Instructions
|
||||
------------
|
||||
|
||||
|
@@ -181,13 +181,18 @@ class Module:
|
||||
debug.verbose(" gcov : " + self.name + " <== " + file);
|
||||
file_dst = target.get_full_name_destination(self.name, self.origin_folder, file, "o")
|
||||
global_list_file += file_dst + " "
|
||||
cmd = "gcov --branch-counts --preserve-paths "
|
||||
cmd = "gcov"
|
||||
# specify the version of gcov we need to use
|
||||
if target.config["compilator-version"] != "":
|
||||
cmd += "-" + target.config["compilator-version"] + " "
|
||||
cmd += " --branch-counts --preserve-paths "
|
||||
if generate_output == False:
|
||||
cmd += "--no-output "
|
||||
cmd += global_list_file
|
||||
debug.extreme_verbose(" " + cmd);
|
||||
ret = multiprocess.run_command_direct(cmd)
|
||||
# parsing ret :
|
||||
debug.extreme_verbose("result: " + str(ret));
|
||||
ret = ret.split('\n');
|
||||
debug.verbose("*** Gcov result parsing ...");
|
||||
useful_list = []
|
||||
|
Reference in New Issue
Block a user