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=""
function clean() {
mingw32-make clean > /dev/null
make clean > /dev/null
}
function compile() {
@ -33,7 +33,7 @@ function execute_test() {
function coverage() {
echo -n " * Coverage..."
mkdir gcov 2> /dev/null
if ! mingw32-make gcov > gcovlog.txt 2> /dev/null
if ! make gcov > gcovlog.txt 2> /dev/null
then
echo "failed"
clean
@ -45,7 +45,7 @@ function coverage() {
function misra() {
echo -n " * Analysing..."
if ! mingw32-make misra > misralog.txt
if ! make misra > misralog.txt
then
echo "failed"
clean