Changeset 5315
- Timestamp:
- 08/17/10 13:29:25 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk/test/NightlyRun/runme.m ΒΆ
r5272 r5315 75 75 list_ids=[]; 76 76 for i=1:numel(list), 77 if ( strncmp i(list(i).name,'test',4) &... %File name must start with 'test'78 strncmp i(fliplr(list(i).name),fliplr('.m'),2)&... %File name must end by '.m'79 ~str ncmpi(fliplr(list(i).name),fliplr('_nightly.m'),10)), %File name end should be different that '_nightly.m'80 list_ids(end+1)=eval(list(i).name(5:end-2)); 77 if ( strncmp(list(i).name,'test',4) &... %File name must start with 'test' 78 strncmp(fliplr(list(i).name),fliplr('.m'),2)&... %File name must end by '.m' 79 ~strcmp(list(i).name,'test.m')) %File name must be different than 'test.m' 80 list_ids(end+1)=eval(list(i).name(5:end-2)); %Keep test id only (skip 'test' and '.m') 81 81 end 82 82 end
Note:
See TracChangeset
for help on using the changeset viewer.