Changeset 733
- Timestamp:
- 06/02/09 15:53:39 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/utils/Nightly/nightlyrun.m
r656 r733 26 26 [status,list]=system('ls -l | grep -v CVS | grep -v cielo | awk ''{printf("%s|",$9);}'' '); %only works on *nix systems. 27 27 list=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. 29 30 for i=2:length(list)-1, 30 31 eval(['cd ' list{i}]); … … 32 33 runme(varargin{1}); 33 34 else 34 runme({'macayeal','ice','cielo_serial'}); 35 runme({'macayeal'}); 36 runme({'ice'}); 37 runme({'cielo_serial'}); 38 runme({'cielo_parallel'}); 35 39 end 36 40 cd .. 37 41 end 42 43 %display needed by nightlyrun.sh to check that no error popped up. 38 44 disp('NIGHTLYRUNTERMINATEDCORRECTLY');
Note:
See TracChangeset
for help on using the changeset viewer.