Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
dde9c9c280 | |||
598d301284 |
@@ -327,8 +327,9 @@ class Module:
|
|||||||
for line_base in start_with:
|
for line_base in start_with:
|
||||||
if elem[:len(line_base)] == line_base:
|
if elem[:len(line_base)] == line_base:
|
||||||
find = True
|
find = True
|
||||||
elem = elem[len(line_base)+1:]
|
elem = elem[len(line_base):]
|
||||||
break;
|
break;
|
||||||
|
debug.verbose(" temp Value: " + str(elem))
|
||||||
if find == False:
|
if find == False:
|
||||||
debug.warning(" gcov ret : " + str(elem));
|
debug.warning(" gcov ret : " + str(elem));
|
||||||
debug.warning(" ==> does not start with : " + str(start_with));
|
debug.warning(" ==> does not start with : " + str(start_with));
|
||||||
@@ -375,6 +376,7 @@ class Module:
|
|||||||
debug.info(" % " + str(elem[1]) + "\r\t\t" + str(elem[0]));
|
debug.info(" % " + str(elem[1]) + "\r\t\t" + str(elem[0]));
|
||||||
else:
|
else:
|
||||||
debug.info(" % " + str(elem[1]) + "\r\t\t" + str(elem[0]));
|
debug.info(" % " + str(elem[1]) + "\r\t\t" + str(elem[0]));
|
||||||
|
debug.verbose(" " + str(elem[2]) + " / " + str(elem[3]));
|
||||||
try:
|
try:
|
||||||
pourcent = 100.0*float(executed_lines)/float(executable_lines)
|
pourcent = 100.0*float(executed_lines)/float(executable_lines)
|
||||||
except ZeroDivisionError:
|
except ZeroDivisionError:
|
||||||
|
2
setup.py
2
setup.py
@@ -16,7 +16,7 @@ def readme():
|
|||||||
|
|
||||||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||||
setup(name='lutin',
|
setup(name='lutin',
|
||||||
version='1.2.2',
|
version='1.2.3',
|
||||||
description='Lutin generic builder (might replace makefile, CMake ...)',
|
description='Lutin generic builder (might replace makefile, CMake ...)',
|
||||||
long_description=readme(),
|
long_description=readme(),
|
||||||
url='http://github.com/HeeroYui/lutin',
|
url='http://github.com/HeeroYui/lutin',
|
||||||
|
Reference in New Issue
Block a user