Changeset 7046
- Timestamp:
- May 18, 2009, 10:17:48 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/numpy_misc/tools/acceptance_tests/test_utils.py
r7026 r7046 20 20 'node_stem': 'compute-0-%d', 21 21 'bad_nodes': []} 22 'off_site': {'num_nodes': 1, 23 'node_stem': 'xyzzy-%d', 24 'bad_nodes': []} 22 25 } 23 26 … … 125 128 info = Cluster_Info[cluster] 126 129 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']: 129 131 continue 130 132 result.append(n)
Note: See TracChangeset
for help on using the changeset viewer.