Donate CPU: include inconclusive results

This commit is contained in:
Daniel Marjamäki 2018-09-09 13:16:39 +02:00
parent 772939476d
commit 91a8807810
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ def unpackPackage(workPath, tgz):
def scanPackage(workPath, cppcheck, jobs):
print('Analyze..')
os.chdir(workPath)
cmd = 'nice ' + cppcheck + ' ' + jobs + ' -D__GCC__ --enable=style --library=posix --platform=unix64 --template={file}:{line}:{message}[{id}] -rp=temp temp'
cmd = 'nice ' + cppcheck + ' ' + jobs + ' -D__GCC__ --inconclusive --enable=style --library=posix --platform=unix64 --template={file}:{line}:{inconclusive:inconclusive:}{message}[{id}] -rp=temp temp'
print(cmd)
startTime = time.time()
p = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE)