Changeset 480
- Timestamp:
- 05/18/09 16:16:08 (16 years ago)
- Location:
- issm/trunk/src/m/utils
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/utils/Nightly/nightlyrun.m
r298 r480 1 function nightlyrun(varargin) 1 2 %NIGHTLYRUN - run the nighlty tests on 'tests/Verification' 2 3 % 3 % This script goes to each directory of 'tests/Verifications' and 4 % launch the nightly tests. 4 % This function goes to each directory of 'tests/Verifications' and 5 % launch the nightly tests. A specific package can be given in input 6 % only this package will be tested 7 % 8 % Usage: 9 % nightlyrun(varargin) 10 % 11 % Example: 12 % nightlyrun; 13 % nightlyrun({'ice'}); 14 % nightlyrun({'cielo_serial','cielo_parallel'}); 5 15 6 16 %Go to Test directory … … 16 26 for i=2:length(list)-1, 17 27 eval(['cd ' list{i}]); 18 runme; 28 if nargin==1 29 runme(varargin{1}); 30 else 31 runme; 32 end 19 33 cd .. 20 34 end -
issm/trunk/src/m/utils/UpdateArchive/updatearchive.m
r33 r480 1 function updatearchive(varargin) 1 2 %UPDATEARCHIVE - update the tests archives in 'tests/Verification' 2 3 % 3 % This script updates all the archive files of the Verification directory on Ice.4 % This function updates all the archive files of the Verification directory on ISSM. 4 5 % All the archive files are saved in the appropriate directory but no one is commited. 5 % If you want to do so, just commit the updated files. 6 % If you want to do so, just commit the updated files. A specific package can be 7 % given in input only this package will be tested 8 % 9 % Usage: 10 % updatearchive(varargin) 11 % 12 % Example: 13 % updatearchive; 14 % updatearchive({'ice'}); 15 % updatearchive({'cielo_serial','cielo_parallel'}); 16 6 17 7 18 %Go to Test directory
Note:
See TracChangeset
for help on using the changeset viewer.