Changeset 733


Ignore:
Timestamp:
06/02/09 15:53:39 (15 years ago)
Author:
Mathieu Morlighem
Message:

nightly run package by package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/utils/Nightly/nightlyrun.m

    r656 r733  
    2626[status,list]=system('ls -l | grep -v CVS | grep -v cielo | awk ''{printf("%s|",$9);}'' '); %only works on *nix systems.
    2727list=strsplit(list,'|');
    28 %Go through list of decks, and run the deck runme.m files.
     28
     29%Go through list of decks, and run the deck runme.m files package by package.
    2930for i=2:length(list)-1,
    3031        eval(['cd ' list{i}]);
     
    3233                runme(varargin{1});
    3334        else
    34                 runme({'macayeal','ice','cielo_serial'});
     35                runme({'macayeal'});
     36                runme({'ice'});
     37                runme({'cielo_serial'});
     38                runme({'cielo_parallel'});
    3539        end
    3640        cd ..
    3741end
     42
     43%display needed by nightlyrun.sh to check that no error popped up.
    3844disp('NIGHTLYRUNTERMINATEDCORRECTLY');
Note: See TracChangeset for help on using the changeset viewer.