Changeset 27443


Ignore:
Timestamp:
11/28/22 19:41:23 (2 years ago)
Author:
jdquinn
Message:

CHG: Catch permission error; cleanup

Location:
issm/trunk-jpl
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/jenkins/jenkins.sh

    r27432 r27443  
    497497
    498498        # Check that Python did not exit in error
    499         pythonExitedInError=`grep -c -E "Error|Standard exception|Traceback|bad interpreter|syntax error" python_log.log`
     499        pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python_log.log`
    500500
    501501        if [ $pythonExitedInError -ne 0 ]; then
  • issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-2.sh

    r27431 r27443  
    139139        # Check that Python did not exit in error
    140140        pythonExitCode=`echo $?`
    141         pythonExitedInError=`grep -c -E "Error|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     141        pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
    142142
    143143        if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
  • issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh

    r27431 r27443  
    142142        # Check that Python did not exit in error
    143143        pythonExitCode=`echo $?`
    144         pythonExitedInError=`grep -c -E "Error|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     144        pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
    145145
    146146        if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
  • issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-2.sh

    r27431 r27443  
    152152        # Check that Python did not exit in error
    153153        pythonExitCode=`echo $?`
    154         pythonExitedInError=`grep -c -E "Error|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     154        pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
    155155
    156156        if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
  • issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh

    r27431 r27443  
    155155        # Check that Python did not exit in error
    156156        pythonExitCode=`echo $?`
    157         pythonExitedInError=`grep -c -E "Error|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     157        pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
    158158
    159159        if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
  • issm/trunk-jpl/packagers/mac/test-issm-mac-binaries-python-2.sh

    r27431 r27443  
    3434# Check that Python did not exit in error
    3535pythonExitCode=`echo $?`
    36 pythonExitedInError=`grep -c -E "Error|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     36pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
    3737
    3838if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
  • issm/trunk-jpl/packagers/mac/test-issm-mac-binaries-python-3.sh

    r27431 r27443  
    3434# Check that Python did not exit in error
    3535pythonExitCode=`echo $?`
    36 pythonExitedInError=`grep -c -E "Error|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     36pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
    3737
    3838if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
  • issm/trunk-jpl/src/m/classes/hydrologyglads.m

    r27393 r27443  
    6464
    6565                        %Sheet
    66                         md = checkfield(md,'fieldname','hydrology.pressure_melt_coefficient','numel',[1],'>=',0);       
    67                         md = checkfield(md,'fieldname','hydrology.sheet_conductivity','size',[md.mesh.numberofvertices 1],'>',0,'NaN',1,'Inf',1);       
    68                         md = checkfield(md,'fieldname','hydrology.cavity_spacing','numel',[1],'>',0);   
     66                        md = checkfield(md,'fieldname','hydrology.pressure_melt_coefficient','numel',[1],'>=',0);
     67                        md = checkfield(md,'fieldname','hydrology.sheet_conductivity','size',[md.mesh.numberofvertices 1],'>',0,'NaN',1,'Inf',1);
     68                        md = checkfield(md,'fieldname','hydrology.cavity_spacing','numel',[1],'>',0);
    6969                        md = checkfield(md,'fieldname','hydrology.bump_height','size',[md.mesh.numberofvertices 1],'>=',0,'NaN',1,'Inf',1);
    7070
    7171                        %Channels
    7272                        md = checkfield(md,'fieldname','hydrology.ischannels','numel',[1],'values',[0 1]);
    73                         md = checkfield(md,'fieldname','hydrology.channel_conductivity','size',[md.mesh.numberofvertices 1],'>=',0,'NaN',1,'Inf',1);   
    74                         md = checkfield(md,'fieldname','hydrology.channel_sheet_width','numel',[1],'>=',0);     
     73                        md = checkfield(md,'fieldname','hydrology.channel_conductivity','size',[md.mesh.numberofvertices 1],'>=',0,'NaN',1,'Inf',1);
     74                        md = checkfield(md,'fieldname','hydrology.channel_sheet_width','numel',[1],'>=',0);
    7575
    7676                        %Other
  • issm/trunk-jpl/test/NightlyRun/runme.py

    r27440 r27443  
    8989    exception'; see also jenkins/jenkins.sh). These should be counted as
    9090    failures.
    91     - Figure out why the following changes allow for correct partitioning of
    92     test set, but cause an error with ADOL-C build (some test logs are parsed
    93     twice).
    9491    """
    9592
Note: See TracChangeset for help on using the changeset viewer.