From 0a0ffcdac65ef349b9c6d2c15d525e5517f18b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 21 May 2018 08:54:21 +0200 Subject: [PATCH] daca2: skip --exception-handling to avoid hangs (#8589) --- tools/daca2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/daca2.py b/tools/daca2.py index 478838a30..c8e51ee3b 100644 --- a/tools/daca2.py +++ b/tools/daca2.py @@ -153,8 +153,9 @@ def scanarchive(filepath, jobs, cpulimit): cmd = 'cpulimit --limit=' + cpulimit else: cmd = 'nice --adjustment=1000' + # TODO: The --exception-handling=stderr is skipped right now because it hangs (#8589) cmd = cmd + ' ../cppcheck-O2 -D__GCC__ --enable=style --inconclusive --error-exitcode=0 ' +\ - '--exception-handling=stderr ' + jobs + ' --template=daca2 .' + jobs + ' --template=daca2 .' cmds = cmd.split() p = subprocess.Popen(cmds, stdout=subprocess.PIPE, stderr=subprocess.PIPE)