Changeset 20072
- Timestamp:
- 02/03/16 15:51:54 (9 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/runme.m
r19595 r20072 19 19 % 'mesh' : validation of mesh tests 20 20 % 'adolc' : validation of adolc tests 21 % ' gia' : validation of giatests21 % 'slr' : validation of slr tests 22 22 % 'qmu' : validation of dakota tests 23 23 % ... … … 49 49 %GET benchmark {{{ 50 50 benchmark=getfieldvalue(options,'benchmark','nightly'); 51 if ~ismember(benchmark,{'all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc',' gia','qmu'})51 if ~ismember(benchmark,{'all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc','slr','qmu'}) 52 52 disp('runme warning: benchmark not supported, defaulting to test ''nightly''') 53 53 benchmark='nightly'; … … 117 117 elseif strcmpi(benchmark,'referential'), 118 118 test_ids=intersect(test_ids,[1601:1602]); 119 elseif strcmpi(benchmark,' gia'),119 elseif strcmpi(benchmark,'slr'), 120 120 test_ids=intersect(test_ids,[2001:2100]); 121 121 elseif strcmpi(benchmark,'adolc'), -
issm/trunk-jpl/test/NightlyRun/runme.py
r19595 r20072 28 28 'mesh' : validation of mesh tests 29 29 'adolc' : validation of adolc tests 30 ' gia' : validation of giatests30 'slr' : validation of slr tests 31 31 32 32 ... … … 53 53 #Process options 54 54 #GET benchmark {{{ 55 if not ismember(benchmark,['all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc',' gia']):55 if not ismember(benchmark,['all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc','slr']): 56 56 print "runme warning: benchmark '%s' not supported, defaulting to test 'nightly'." % benchmark 57 57 benchmark='nightly' … … 116 116 elif strcmpi(benchmark,'referential'): 117 117 test_ids=test_ids.intersection(set(range(1601,1603))) 118 elif strcmpi(benchmark,' gia'):118 elif strcmpi(benchmark,'slr'): 119 119 test_ids=test_ids.intersection(set(range(2001,2100))) 120 120 elif strcmpi(benchmark,'adolc'):
Note:
See TracChangeset
for help on using the changeset viewer.