Index: build/build.sh =================================================================== diff -u -r2199c427acb9e79312162f44756db9c217d74e89 -r8e645073a8933a112a36630d99eaea3292cbcccc --- build/build.sh (.../build.sh) (revision 2199c427acb9e79312162f44756db9c217d74e89) +++ build/build.sh (.../build.sh) (revision 8e645073a8933a112a36630d99eaea3292cbcccc) @@ -234,15 +234,19 @@ build_log=../build_$gcc_out.log $gcc_make -j4 1> $build_log 2> $build_err - if [[ $(grep "error:" $build_err) != "" ]]; then + # Check for errors + if [[ $(grep "error:" $build_err) != "" ]] + then echo "ERROR: Application Build Failed [$gcc_out]" echo "Build, Failed, $gcc_out" >> $STATUS_REPORT hasTestPassed=false else echo "Build, Passed" >> $STATUS_REPORT fi - if [[ $(grep "warning:" $build_err) != "" ]]; then + # Check for warnings + if [[ $(grep "warning:" $build_err) != "" ]] + then echo "WARNING: Application Build Has Warnings [$gcc_out]" echo "Application build warnings:, $gcc_out" >> $STATUS_REPORT fi