Ignore:
Timestamp:
11/24/20 14:39:01 (4 years ago)
Author:
jdquinn
Message:

CHG: Addition of packaging scripts for ISSM macOS binaries with Python API; documentation; variable initialization

File:
1 copied

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/packagers/mac/test-issm-mac-binaries-python.sh

    r25769 r25780  
    11#!/bin/bash
    22
    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.
    56#
    67# NOTE: Tarball must already exist in INSTALL_DIR
     8################################################################################
     9
     10## Constants
    711#
    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"
     12INSTALL_DIR=.
     13PKG="ISSM-macOS-Python"
     14PYTHON_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
    1315
    1416COMPRESSED_PKG="${PKG}.zip"
     
    1618export ISSM_DIR="${INSTALL_DIR}/${PKG}"
    1719export PATH="${PATH}:${ISSM_DIR}/bin:${ISSM_DIR}/scripts"
     20export PYTHONPATH="${ISSM_DIR}/scripts"
     21export PYTHONSTARTUP="${PYTHONPATH}/devpath.py"
     22export PYTHONUNBUFFERED=1 # We don't want Python to buffer output, otherwise issm.exe output is not captured
    1823
    1924cd ${INSTALL_DIR}
    2025rm -rf ${PKG}
    21 tar -zxvf ${COMPRESSED_PKG}
     26ditto -xk ${COMPRESSED_PKG} .
    2227cd ${PKG}/test/NightlyRun
    2328
    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
     30echo "Running tests"
     31rm python.log 2> /dev/null
     32./runme.py ${PYTHON_NROPTIONS} &> python.log 2>&1
    2733
    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
     35pythonExitCode=`echo $?`
     36pythonExitedInError=`grep -E "runme.py: error" python.log | wc -l`
    3037
    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-----------"
     38if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
     39        echo "----------Python exited in error!----------"
     40        cat python.log
     41        echo "-----------End of python.log-----------"
    4042        exit 1
    4143fi
    4244
    43 # Check that all MATLAB tests passed
    44 numMatlabTestsFailed=`cat matlab.log | grep -c -e "FAILED|ERROR"`
     45# Check that all tests passed
     46numTestsFailed=`cat python.log | grep -c -e "FAILED|ERROR"`
    4547
    46 if [[ ${numMatlabTestsFailed} -ne 0 ]]; then
    47         echo "One or more MATLAB tests FAILED"
     48if [[ ${numTestsFailed} -ne 0 ]]; then
     49        echo "One or more tests FAILED"
    4850        exit 1
    4951else
    50         echo "All MATLAB tests PASSED"
     52        echo "All tests PASSED"
    5153fi
Note: See TracChangeset for help on using the changeset viewer.