Changeset 163

Show
Ignore:
Timestamp:
10/14/07 05:22:09
Author:
apokayi
Message:

simple change -- add a newline after FAILED output

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • guts_main/guts_main.sh

    r145 r163  
    6969                else 
    7070                        printf "TEST \033[31m\033[1mFAILED\033[0m for the unit [$UNIT]" 
     71                        printf "\n" 
    7172                        echo $exe_output 
    7273                        echo "$UNIT" >>units.notpassed 
     
    9394 
    9495for NUNIT in `cat ${UNITS_NEG}`; do 
    95         printf "-------------->      Working on unit -- $NUNIT\n" 
     96        printf ">-------------->      Working on unit -- $NUNIT\n" 
    9697 
    9798        build_output=`$UPCC $UPC_FLAGS -I../include $NUNIT.upc -o $NUNIT` 
     
    128129 
    129130for RNUNIT in `cat ${RNUNITS}`; do 
    130         printf "-------------->      Working on unit -- $RNUNIT\n" 
     131        printf ">-------------->      Working on unit -- $RNUNIT\n" 
    131132 
    132133        build_output=`$UPCC $UPC_FLAGS -I../include $RNUNIT.upc -o $RNUNIT >>$RNUNIT.out 2>$RNUNIT.errout`