You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
304 B
8 lines
304 B
#!/bin/bash -e
|
|
git clone https://github.com/danmar/cppcheck.git || true
|
|
cd cppcheck
|
|
git checkout 29e5992e51ecf1ddba469c73a0eed0b28b131de5
|
|
make -j4
|
|
cd ../../../
|
|
tests/misra/cppcheck/cppcheck --dump board/main.c
|
|
python tests/misra/cppcheck/addons/misra.py board/main.c.dump 2>/tmp/misra/output.txt || true
|
|
|