Fixed apollo cppcheck run.

Reviewers: mislav.bradac

Reviewed By: mislav.bradac

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D610
This commit is contained in:
Matej Ferencevic 2017-07-30 12:15:29 +02:00
parent 4b72118894
commit 8d482f5fcd
2 changed files with 3 additions and 3 deletions
tools/apollo

View File

@ -16,9 +16,9 @@ if [ "$mode" == diff ]; then
flags=""
else
files=src/
flags="-j$THREADS"
flags="-j$THREADS -Isrc"
fi
cppcheck --enable=all --force --suppress=missingInclude $flags -Isrc $files 2>"$errfile"
cppcheck --enable=all --force --suppress=missingInclude $flags $files 2>"$errfile"
cat "$errfile" >&2

View File

@ -105,7 +105,7 @@ check_dirs = list(map(lambda x: os.path.join(BASE_DIR, x), ["src", "tests",
archive = create_archive("cppcheck", check_dirs, WORKSPACE_DIR)
cmd = os.path.relpath(cppcheck, WORKSPACE_DIR)
outfile_paths = "\./" + cmd.replace("cppcheck", ".cppcheck_errors").replace(".", "\\.")
RUNS.append(generate_run("cppcheck", commands = './{} {}'.format(cmd, mode),
RUNS.append(generate_run("cppcheck", commands = 'TIMEOUT=1000 ./{} {}'.format(cmd, mode),
infile = archive, outfile_paths = outfile_paths))
# ctest tests