Changeset 25301
- Timestamp:
- 07/25/20 00:58:02 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/jenkins/jenkins.sh
r24651 r25301 575 575 576 576 # Check that Python did not exit in error 577 pythonExitedInError=`grep -E "Error| Traceback|bad interpreter" python_log.log | wc -l`577 pythonExitedInError=`grep -E "Error|Standard exception|Traceback|bad interpreter" python_log.log | wc -l` 578 578 579 579 if [ $pythonExitedInError -ne 0 ] -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-solid_earth.sh
r25244 r25301 97 97 # Check that MATLAB did not exit in error 98 98 matlabExitCode=`echo $?` 99 matlabExitedInError=`grep -E " Activation cannot proceed|license|Error" matlab.log | wc -l`99 matlabExitedInError=`grep -E "Error|Standard exception|Traceback|bad interpreter" matlab.log | wc -l` 100 100 101 101 if [[ ${matlabExitCode} -ne 0 || ${matlabExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-with_dakota.sh
r25244 r25301 107 107 # Check that Python did not exit in error 108 108 pythonExitCode=`echo $?` 109 pythonExitedInError=`grep -E "Error| Traceback|bad interpreter" python.log | wc -l`109 pythonExitedInError=`grep -E "Error|Standard exception|Traceback|bad interpreter" python.log | wc -l` 110 110 111 111 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-solid_earth.sh
r25244 r25301 127 127 # Check that Python did not exit in error 128 128 pythonExitCode=`echo $?` 129 pythonExitedInError=`grep -E "Error| Traceback|bad interpreter" python.log | wc -l`129 pythonExitedInError=`grep -E "Error|Standard exception|Traceback|bad interpreter" python.log | wc -l` 130 130 131 131 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-with_dakota.sh
r25244 r25301 101 101 # Check that Python did not exit in error 102 102 pythonExitCode=`echo $?` 103 pythonExitedInError=`grep -E "Error| Traceback|bad interpreter" python.log | wc -l`103 pythonExitedInError=`grep -E "Error|Standard exception|Traceback|bad interpreter" python.log | wc -l` 104 104 105 105 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/src/m/solve/WriteData.py
r25300 r25301 40 40 # end 41 41 42 # Always make a copy of the the data so that we do not accidently overwrite 43 # any model fields. 44 data = deepcopy(data) 42 # Make a copy of the the data so that we do not accidently overwrite any 43 # model fields. 44 # 45 # NOTE: This is a temporary fix to get builds green in Jenkins: without it, 46 # there still exists a bug wherein model fields are being modified 47 # (see https://ross.ics.uci.edu/jenkins/view/All/job/Debian_Linux-Python/1036). 48 # 49 if mattype != 0: 50 data = deepcopy(data) 45 51 46 52 #Scale data if necesarry -
issm/trunk-jpl/test/NightlyRun/runme.py
r25178 r25301 61 61 62 62 TODO: 63 - At '#disp test result', make sure precision of output matches 63 - At '#disp test result', make sure precision of output matches that of 64 MATLAB. 65 - Check for failures that do not raise exceptions (for example, 'Standard exception'; see also jenkins/jenkins.sh). These should be counted as failures. 64 66 """ 65 67 #Get ISSM_DIR variable … … 201 203 errorcount += 1 202 204 erroredtest_list.append(id) 205 elif : 206 print('FAILURE') 203 207 else: 204 208 print(('SUCCESS difference: {:7.2g} < {:7.2g} test id: {} test name: {} field: {}'.format(error_diff, tolerance, id, id_string, fieldname)))
Note:
See TracChangeset
for help on using the changeset viewer.