Changeset 12767


Ignore:
Timestamp:
07/26/12 16:51:56 (13 years ago)
Author:
Mathieu Morlighem
Message:

Removed SUCCESSES from report

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/scripts/report.sh

    r12159 r12767  
    5656fi
    5757
     58IS_TABLE=0
     59if [ $NUM_TOT -gt 1 ];
     60then
     61        if [ $NUM_SUC -ne $NUM_TOT  ];
     62        then
     63                IS_TABLE=1
     64        fi
     65fi
     66
    5867#-------------------#
    5968# build report.html #
     
    96105
    97106#update status
    98 if [ $IS_INSTALL -eq 1 ]
    99 then
    100         if [ $CRASH -eq 0 ]
     107echo $CRASH
     108if [ $IS_INSTALL -eq 1 ];
     109then
     110        if [ $CRASH -eq 0 ];
    101111        then
    102112                cat summary.html | sed -e "s/STATUS/<span style=\"color:#008000\">all test desks have been run<\/span>/g" > summary2.html
     
    110120
    111121#report table
    112 if [ $IS_INSTALL -eq 1 ];
     122if [ $IS_TABLE -eq 1 ];
    113123then
    114124        cat << END > content.html
     
    137147                  echo $line | awk -v FONTC="$FONTC" -v FONTL="$FONTL" '
    138148                  { printf("<td %s id=FAILURE>%s</td>\n<td %s>%s</td>\n<td %s>%s</td>\n<td %s>%s</td>\n<td %s>%s</td>\n\n",FONTL,$1,FONTC,$3,FONTC,$6,FONTL,$9,FONTL,$11);}
    139                           ';
    140 
    141                   else
     149                  ';
     150
     151          else
    142152
    143153                  #SUCCESS
     
    146156                          FONTC=$(echo "$BODY_FONTC bgcolor=#ddffdd")
    147157                          FONTL=$(echo "$BODY_FONTL bgcolor=#ddffdd")
     158                          #do not write anything
    148159                  #ERROR
    149160                  else
    150161                          FONTC=$(echo "$BODY_FONTC bgcolor=#ffdddd id=ERROR")
    151162                          FONTL=$(echo "$BODY_FONTL bgcolor=#ffdddd")
     163                          echo $line | awk -v FONTC="$FONTC" -v FONTL="$FONTL" '
     164                          { printf("<td %s>%s</td>\n<td %s>%s%s%s</td>\n<td %s>%s</td>\n<td %s>%s</td>\n<td %s>%s</td>\n\n",FONTL,$1,FONTL,$3,$4,$5,FONTC,$8,FONTL,$11,FONTL,$13);}
     165                          ';
    152166                  fi
    153167
    154 
    155                   echo $line | awk -v FONTC="$FONTC" -v FONTL="$FONTL" '
    156                   { printf("<td %s>%s</td>\n<td %s>%s%s%s</td>\n<td %s>%s</td>\n<td %s>%s</td>\n<td %s>%s</td>\n\n",FONTL,$1,FONTL,$3,$4,$5,FONTC,$8,FONTL,$11,FONTL,$13);}
    157                           ';
    158168          fi
    159169
Note: See TracChangeset for help on using the changeset viewer.