Changeset 19088


Ignore:
Timestamp:
02/04/15 13:25:20 (10 years ago)
Author:
Mathieu Morlighem
Message:

CHG: IdToName(0) returns the list of test names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/IdToName.m

    r19049 r19088  
    11function name=IdToName(id);
    22%IDTONAME- return name of test
     3
     4%   if id=0, the full list of test is returned
    35%
    46%   Usage:
    57%      name=IdToName(id);
     8
     9if id==0,
     10        flist=dir;%use dir, as it seems to act OS independent
     11        list_ids=[];
     12        for i=1:numel(flist),
     13                if ( strncmp(flist(i).name,'test',4) &...                         %File name must start with 'test'
     14                                strncmp(fliplr(flist(i).name),fliplr('.m'),2)&...           %File name must end by '.m'
     15                                ~strcmp(flist(i).name,'test.m'))                            %File name must be different than 'test.m'
     16                        id=str2num(flist(i).name(5:end-2));
     17                        if isempty(id),
     18                                disp(['WARNING: ignore file ' flist(i).name ]);
     19                        else
     20                                list_ids(end+1)=eval(flist(i).name(5:end-2));                  %Keep test id only (skip 'test' and '.m')
     21                        end
     22                end
     23        end
     24        list_ids=sort(list_ids);
     25        for i=list_ids,
     26                name=IdToName(i);
     27                disp(['test ' num2str(i,'%5i\n') ' : ' name]);
     28        end
     29        return;
     30end
    631
    732filename = ['test' num2str(id) '.m'];
Note: See TracChangeset for help on using the changeset viewer.