#!/bin/sh TOP_DIR=/home/robocop/robTester/svnRobTester cd $TOP_DIR . target_type # # Setting ROB type for getSummary perl scripts # MODE=1 # 0 = SINGLEROB, 1 = EXTENDED DEBUG=30 # Perl debug level (see script) if [ "$ROBTYPE" == "1A" ]; then TYPE="AA" fi if [ "$ROBTYPE" == "1B" ]; then TYPE="AB" fi if [ "$ROBTYPE" == "2B" ]; then TYPE="BB" fi if [ "$ROBTYPE" == "3A" ]; then TYPE="CA" fi if [ "$ROBTYPE" == "3B" ]; then TYPE="CB" fi if [ "$ROBTYPE" == "4A" ]; then TYPE="DA" fi if [ "$ROBTYPE" == "4B" ]; then TYPE="DB" fi echo Basename: $BASENAME echo Perl type: $TYPE echo Perl mode: $MODE echo hamming: $hamming sleep 5 # PASA and tempSensors test echo -e "\v" echo "****************************************" echo "* Performing analog tests... *" echo "****************************************" #RESET_ERR="OK"; cd $TOP_DIR/pasa_adc rm ../LOG/reportInj.log ./plot_charge_inj_diagn ./check_thr_diagn #CLEAN data/ rm /home/robocop/robTester/svnRobTester/pasa_adc/data/* if [ -s Charge_inj_diagn/report_charge_inj.log ] ; then mv Charge_inj_diagn/report_charge_inj.log ../LOG/reportInj.log else echo "All bondings OK" > ../LOG/reportInj.log fi cd $TOP_DIR