source:
issm/oecreview/Archive/24684-25833/ISSM-25300-25301.diff
Last change on this file was 25834, checked in by , 4 years ago | |
---|---|
File size: 5.6 KB |
-
../trunk-jpl/packagers/linux/package-issm-linux-binaries-solid_earth.sh
96 96 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 102 102 echo "----------MATLAB exited in error!----------" -
../trunk-jpl/packagers/linux/package-issm-linux-binaries-with_dakota.sh
106 106 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 112 112 echo "----------Python exited in error!----------" -
../trunk-jpl/packagers/mac/package-issm-mac-binaries-solid_earth.sh
126 126 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 132 132 echo "----------Python exited in error!----------" -
../trunk-jpl/packagers/mac/package-issm-mac-binaries-with_dakota.sh
100 100 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 106 106 echo "----------Python exited in error!----------" -
../trunk-jpl/jenkins/jenkins.sh
574 574 done 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 ] 580 580 then -
../trunk-jpl/test/NightlyRun/runme.py
60 60 runme(id = [[101, 102], ['Dakota', 'Slr']]) 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 66 68 ISSM_DIR = os.environ['ISSM_DIR'] … … 200 202 print(('ERROR difference: {:7.2g} > {:7.2g} test id: {} test name: {} field: {}'.format(error_diff, tolerance, id, id_string, fieldname))) 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))) 205 209 -
../trunk-jpl/src/m/solve/WriteData.py
39 39 # data = full(data) 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 47 53 if options.exist('scale'):
Note:
See TracBrowser
for help on using the repository browser.