Index: build/build.sh =================================================================== diff -u -r8e645073a8933a112a36630d99eaea3292cbcccc -rbc3b31c011df60c34ca6922f919a33e7151ec903 --- build/build.sh (.../build.sh) (revision 8e645073a8933a112a36630d99eaea3292cbcccc) +++ build/build.sh (.../build.sh) (revision bc3b31c011df60c34ca6922f919a33e7151ec903) @@ -266,14 +266,17 @@ build_log=../build_$poky_out.log $poky_make -j4 1> $build_log 2> $build_err - if [[ $(grep "error:" $build_err) != "" ]]; then + if [[ $(grep "error:" $build_err) != "" ]] + then echo "ERROR: Application Build Failed [$poky_out]" echo "Build, Failed, $poky_out" >> $STATUS_REPORT hasTestPassed=false else echo "Build, Passed" >> $STATUS_REPORT + fi - if [[ $(grep "warning:" $build_err) != "" ]]; then + if [[ $(grep "warning:" $build_err) != "" ]] + then echo "WARNING: Application Build Has Warnings [$poky_out]" echo "Application build warnings:, $poky_out" >> $STATUS_REPORT fi