Changeset 27613


Ignore:
Timestamp:
02/24/23 11:18:29 (2 years ago)
Author:
jdquinn
Message:

CHG: Catch no file or directory error

Location:
issm/trunk-jpl
Files:
4 edited

Legend:

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

    r27603 r27613  
    497497
    498498        # Check that Python did not exit in error
    499         pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python_log.log`
     499        pythonExitedInError=`grep -c -E "Error|No such file or directory|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-3.sh

    r27603 r27613  
    142142        # Check that Python did not exit in error
    143143        pythonExitCode=`echo $?`
    144         pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     144        pythonExitedInError=`grep -c -E "Error|No such file or directory|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-3.sh

    r27607 r27613  
    148148        # Check that Python did not exit in error
    149149        pythonExitCode=`echo $?`
    150         pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     150        pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
    151151
    152152        if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
  • issm/trunk-jpl/packagers/mac/test-issm-mac-binaries-python-3.sh

    r27603 r27613  
    3434# Check that Python did not exit in error
    3535pythonExitCode=`echo $?`
    36 pythonExitedInError=`grep -c -E "Error|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
     36pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`
    3737
    3838if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
Note: See TracChangeset for help on using the changeset viewer.