Changeset 1566


Ignore:
Timestamp:
08/05/09 09:18:20 (16 years ago)
Author:
Mathieu Morlighem
Message:

minor

Location:
issm/trunk/cron
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/cron/nightlyrun.sh

    r1564 r1566  
    3737        #launch nightly run (get start time)
    3838        source $1;
    39         START=$(timer)
     39        START_TIME=$(timer)
    4040fi
    4141
     
    9393make -j $NUMCPUS
    9494make -j $NUMCPUS install
     95INSTAL_TIME=$(timer)
     96export ELAPSED_INSTAL=$(timer $START)
    9597
    9698#Launch matlab and the nightly run script
     
    105107
    106108#Build html report
    107 export ELAPSEDTIME=$(timer $START)
     109export ELAPSED_RUN=$(timer $INSTAL_TIME)
     110export ELAPSED_TOTAL=$(timer $START_TIME)
    108111./cron/report.sh
    109112               
  • issm/trunk/cron/report.sh

    r1562 r1566  
    8383platform: $ISSM_ARCH<br>
    8484release: $ISSM_RELEASE<br>
    85 elapsed time: $ELAPSEDTIME<br>
     85total elapsed time: $ELAPSED_TOTAL<br>
     86installation elapsed time: $ELAPSED_INSTAL<br>
     87runs elapsed time: $ELAPSED_RUN<br>
    8688<br>
    8789status: $(if [ `wc -l check.log | awk '{printf("%s",$1);}'`  = "0" ];
Note: See TracChangeset for help on using the changeset viewer.