Changeset 13982
- Timestamp:
- 11/19/12 08:43:58 (12 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/runme.m
r13971 r13982 97 97 if strcmpi(benchmark,'nightly'), 98 98 test_ids=intersect(test_ids,[1:999]); 99 elseif strcmpi(benchmark,'validation'), 100 test_ids=intersect(test_ids,[1001:1999]); 99 101 elseif strcmpi(benchmark,'ismip'), 100 102 test_ids=intersect(test_ids,[1101:1199]); … … 105 107 elseif strcmpi(benchmark,'mesh'), 106 108 test_ids=intersect(test_ids,[1401:1499]); 109 elseif strcmpi(benchmark,'tranforcing'), 110 test_ids=intersect(test_ids,[1501:1502]); 111 elseif strcmpi(benchmark,'referential'), 112 test_ids=intersect(test_ids,[1601:1602]); 107 113 elseif strcmpi(benchmark,'adolc'), 108 114 test_ids=intersect(test_ids,[3001:3020]); 109 elseif strcmpi(benchmark,'validation'),110 test_ids=intersect(test_ids,[1001:1999]);111 elseif strcmpi(benchmark,'tranforcing'),112 test_ids=intersect(test_ids,[1501:1502]);113 115 end 114 116 % }}} -
issm/trunk-jpl/test/NightlyRun/runme.py
r13934 r13982 99 99 if strcmpi(benchmark,'nightly'): 100 100 test_ids=test_ids.intersection(set(range(1,1000))) 101 elif strcmpi(benchmark,'validation'): 102 test_ids=test_ids.intersection(set(range(1001,2000))) 101 103 elif strcmpi(benchmark,'ismip'): 102 104 test_ids=test_ids.intersection(set(range(1101,1200))) … … 107 109 elif strcmpi(benchmark,'mesh'): 108 110 test_ids=test_ids.intersection(set(range(1401,1500))) 111 elif strcmpi(benchmark,'tranforcing'): 112 test_ids=test_ids.intersection(set(range(1501,1503))) 113 elif strcmpi(benchmark,'referential'): 114 test_ids=test_ids.intersection(set(range(1601,1603))) 109 115 elif strcmpi(benchmark,'adolc'): 110 116 test_ids=test_ids.intersection(set(range(3001,3020))) 111 elif strcmpi(benchmark,'validation'):112 test_ids=test_ids.intersection(set(range(1001,2000)))113 elif strcmpi(benchmark,'tranforcing'):114 test_ids=test_ids.intersection(set(range(1501,1503)))115 117 #print 'test_ids after benchmark =',test_ids 116 118 test_ids=list(test_ids)
Note:
See TracChangeset
for help on using the changeset viewer.