git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7873 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
Giovanni Di Sirio 2015-04-07 19:50:46 +00:00
parent 2e05c03352
commit 53cfc47b96
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ XOPT="-ggdb -O2 -fomit-frame-pointer -DDELAY_BETWEEN_TESTS=0 -fprofile-arcs -fte
XDEFS="" XDEFS=""
function clean() { function clean() {
mingw32-make clean > /dev/null make clean > /dev/null
} }
function compile() { function compile() {
@ -33,7 +33,7 @@ function execute_test() {
function coverage() { function coverage() {
echo -n " * Coverage..." echo -n " * Coverage..."
mkdir gcov 2> /dev/null mkdir gcov 2> /dev/null
if ! mingw32-make gcov > gcovlog.txt 2> /dev/null if ! make gcov > gcovlog.txt 2> /dev/null
then then
echo "failed" echo "failed"
clean clean
@ -45,7 +45,7 @@ function coverage() {
function misra() { function misra() {
echo -n " * Analysing..." echo -n " * Analysing..."
if ! mingw32-make misra > misralog.txt if ! make misra > misralog.txt
then then
echo "failed" echo "failed"
clean clean