- Timestamp:
- 11/24/20 14:39:01 (4 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/packagers/mac/test-issm-mac-binaries-python.sh
r25769 r25780 1 1 #!/bin/bash 2 2 3 # This script is intended to test ISSM macOS MATLAB binaries downloaded to a 4 # user-end machine. 3 ################################################################################ 4 # This script is intended to test ISSM macOS MATLAB binaries on an end-user 5 # machine after successful packaging and signing. 5 6 # 6 7 # NOTE: Tarball must already exist in INSTALL_DIR 8 ################################################################################ 9 10 ## Constants 7 11 # 8 9 INSTALL_DIR=~/Downloads 10 MATLAB_NROPTIONS="'benchmark','all','exclude',[125,126,234,235,418,420,435,444,445,701,702,703,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1201,1202,1203,1204,1205,1206,1207,1208,1301,1302,1303,1304,1401,1402,1601,1602,2006,2020,2021,2051,2052,2053,3001:3200,3201,3202,3300,3480,3481,4001,4002,4003]" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded 11 MATLAB_PATH="/Applications/MATLAB_R2018a.app" 12 PKG="ISSM-macOS-MATLAB" 12 INSTALL_DIR=. 13 PKG="ISSM-macOS-Python" 14 PYTHON_NROPTIONS="--benchmark all --exclude 125 126 234 235 418 420 435 444 445 701 702 703 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1201 1202 1203 1204 1205 1206 1207 1208 1301 1302 1303 1304 1401 1402 1601 1602 2006 2020 2021 2051 2052 2053 3001:3200 3201 3202 3300 3480 3481 4001 4002 4003" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded 13 15 14 16 COMPRESSED_PKG="${PKG}.zip" … … 16 18 export ISSM_DIR="${INSTALL_DIR}/${PKG}" 17 19 export PATH="${PATH}:${ISSM_DIR}/bin:${ISSM_DIR}/scripts" 20 export PYTHONPATH="${ISSM_DIR}/scripts" 21 export PYTHONSTARTUP="${PYTHONPATH}/devpath.py" 22 export PYTHONUNBUFFERED=1 # We don't want Python to buffer output, otherwise issm.exe output is not captured 18 23 19 24 cd ${INSTALL_DIR} 20 25 rm -rf ${PKG} 21 tar -zxvf ${COMPRESSED_PKG} 26 ditto -xk ${COMPRESSED_PKG} . 22 27 cd ${PKG}/test/NightlyRun 23 28 24 # Check that MATLAB tests run 25 echo "Running MATLAB tests" 26 rm matlab.log 2> /dev/null 29 # Run tests, redirecting output to logfile and suppressing output to console 30 echo "Running tests" 31 rm python.log 2> /dev/null 32 ./runme.py ${PYTHON_NROPTIONS} &> python.log 2>&1 27 33 28 # Run MATLAB tests redirecting output to logfile and suppressing output to console 29 ${MATLAB_PATH}/bin/matlab -nosplash -nodesktop -nojvm -r "try, addpath ../../bin; addpath ../../lib; runme(${MATLAB_NROPTIONS}); exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log &> /dev/null 34 # Check that Python did not exit in error 35 pythonExitCode=`echo $?` 36 pythonExitedInError=`grep -E "runme.py: error" python.log | wc -l` 30 37 31 # Check that MATLAB did not exit in error 32 matlabExitCode=`echo $?` 33 matlabExitedInError=`grep -E "Activation cannot proceed|license|Error|Warning: Name is nonexistent or not a directory" matlab.log | wc -l` 34 35 if [[ ${matlabExitCode} -ne 0 || ${matlabExitedInError} -ne 0 ]]; then 36 echo "----------MATLAB exited in error!----------" 37 cat matlab.log 38 echo 39 echo "-----------End of matlab.log-----------" 38 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then 39 echo "----------Python exited in error!----------" 40 cat python.log 41 echo "-----------End of python.log-----------" 40 42 exit 1 41 43 fi 42 44 43 # Check that all MATLABtests passed44 num MatlabTestsFailed=`cat matlab.log | grep -c -e "FAILED|ERROR"`45 # Check that all tests passed 46 numTestsFailed=`cat python.log | grep -c -e "FAILED|ERROR"` 45 47 46 if [[ ${num MatlabTestsFailed} -ne 0 ]]; then47 echo "One or more MATLABtests FAILED"48 if [[ ${numTestsFailed} -ne 0 ]]; then 49 echo "One or more tests FAILED" 48 50 exit 1 49 51 else 50 echo "All MATLABtests PASSED"52 echo "All tests PASSED" 51 53 fi
Note:
See TracChangeset
for help on using the changeset viewer.