Changeset 13982


Ignore:
Timestamp:
11/19/12 08:43:58 (12 years ago)
Author:
jschierm
Message:

CHG: Cosmetic changes and referential option to runme.m and runme.py.

Location:
issm/trunk-jpl/test/NightlyRun
Files:
2 edited

Legend:

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

    r13971 r13982  
    9797if strcmpi(benchmark,'nightly'),
    9898        test_ids=intersect(test_ids,[1:999]);
     99elseif strcmpi(benchmark,'validation'),
     100        test_ids=intersect(test_ids,[1001:1999]);
    99101elseif strcmpi(benchmark,'ismip'),
    100102        test_ids=intersect(test_ids,[1101:1199]);
     
    105107elseif strcmpi(benchmark,'mesh'),
    106108        test_ids=intersect(test_ids,[1401:1499]);
     109elseif strcmpi(benchmark,'tranforcing'),
     110        test_ids=intersect(test_ids,[1501:1502]);
     111elseif strcmpi(benchmark,'referential'),
     112        test_ids=intersect(test_ids,[1601:1602]);
    107113elseif strcmpi(benchmark,'adolc'),
    108114        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]);
    113115end
    114116% }}}
  • issm/trunk-jpl/test/NightlyRun/runme.py

    r13934 r13982  
    9999        if   strcmpi(benchmark,'nightly'):
    100100                test_ids=test_ids.intersection(set(range(1,1000)))
     101        elif strcmpi(benchmark,'validation'):
     102                test_ids=test_ids.intersection(set(range(1001,2000)))
    101103        elif strcmpi(benchmark,'ismip'):
    102104                test_ids=test_ids.intersection(set(range(1101,1200)))
     
    107109        elif strcmpi(benchmark,'mesh'):
    108110                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)))
    109115        elif strcmpi(benchmark,'adolc'):
    110116                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)))
    115117        #print 'test_ids after benchmark =',test_ids
    116118        test_ids=list(test_ids)
Note: See TracChangeset for help on using the changeset viewer.