Changeset 21118


Ignore:
Timestamp:
08/09/16 14:45:26 (9 years ago)
Author:
glperez
Message:

CHG: From for loop to while.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/jenkins/jenkins.sh

    r21117 r21118  
    407407then
    408408        numtests=`cat matlab_log_examples.log  | grep "starting: " | wc -l`
    409         for i in `echo $numtests`
     409        echo "Processing: $numtests"
     410        counter=0;
     411        while [ $counter -lt $numtests];
    410412        do
    411413                juLog  -test=Example-$i -name=Error -error=FAILURE cat matlab_log_examples.log
     414                let counter+=1
    412415        done
    413416fi
Note: See TracChangeset for help on using the changeset viewer.