Changeset 7046


Ignore:
Timestamp:
May 18, 2009, 10:17:48 AM (16 years ago)
Author:
rwilson
Message:

Changes to allow off-site testing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/numpy_misc/tools/acceptance_tests/test_utils.py

    r7026 r7046  
    2020                            'node_stem': 'compute-0-%d',
    2121                            'bad_nodes': []}
     22                'off_site': {'num_nodes': 1,
     23                             'node_stem': 'xyzzy-%d',
     24                             'bad_nodes': []}
    2225               }
    2326
     
    125128    info = Cluster_Info[cluster]
    126129    for n in xrange(info['num_nodes']):
    127         if strip_bad_nodes:
    128             if n in info['bad_nodes']:
     130        if strip_bad_nodes and n in info['bad_nodes']:
    129131                continue
    130132        result.append(n)
Note: See TracChangeset for help on using the changeset viewer.