Changeset 24226
- Timestamp:
- 10/14/19 23:52:16 (5 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/GetIds.py
r24214 r24226 1 #! / usr / bin /env python1 #!/usr/bin/env python 2 2 from IdToName import * 3 3 from IdFromString import * … … 62 62 # no recognizable ids or id formats 63 63 if np.size(ids) == 0 and not np.all(np.equal(ids_names, None)): 64 raise RuntimeError('runme.py: GetIds.py: include and exclude options (- i / - - id; - in / - - include_name; - e / - - exclude; - en / - -exclude_name) options must follow GetIds usage format:\n' + GetIds.__doc__)64 raise RuntimeError('runme.py: GetIds.py: include and exclude options (-i / --id; -in / --include_name; - e / --exclude; - en / --exclude_name) options must follow GetIds usage format:\n' + GetIds.__doc__) 65 65 66 66 return np.array(ids).astype(int) -
issm/trunk-jpl/test/NightlyRun/IdFromString.py
r24214 r24226 1 #! / usr / bin /env python1 #!/usr/bin/env python 2 2 from IdToName import IdToName 3 3 import os -
issm/trunk-jpl/test/NightlyRun/IdToName.py
r24214 r24226 1 #! / usr / bin /env python1 #!/usr/bin/env python 2 2 3 3 … … 12 12 file_text = infile.readline() 13 13 14 string = ' 14 string = '#Test Name:' 15 15 name = file_text[len(string) + 1: - 1] 16 16 return name -
issm/trunk-jpl/test/NightlyRun/runme.py
r24219 r24226 207 207 fid.write('\n------------------------------------------------------------------ \n') 208 208 fid.close() 209 print(('FAILURE difference: N /A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))209 print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, fieldname))) 210 210 else: 211 print(('FAILURE difference: N /A test id: {} test name: {} field: {}'.format(id, id_string, fieldname)))211 print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, fieldname))) 212 212 raise RuntimeError(message) 213 213 … … 218 218 fid = open(os.path.join(ISSM_DIR, 'nightlylog', 'pythonerror.log'), 'a') 219 219 fid.write('%s' % message) 220 fid.write('\n------------------------------------------------------------------ 220 fid.write('\n------------------------------------------------------------------ \n') 221 221 fid.close() 222 print(('FAILURE difference: N /A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))222 print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A'))) 223 223 else: 224 print(('FAILURE difference: N /A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A')))224 print(('FAILURE difference: N/A test id: {} test name: {} field: {}'.format(id, id_string, 'N/A'))) 225 225 raise RuntimeError(message) 226 226
Note:
See TracChangeset
for help on using the changeset viewer.