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:
parent
4b72118894
commit
8d482f5fcd
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user