source:
issm/oecreview/Archive/27032-27229/ISSM-27063-27064.diff
Last change on this file was 27230, checked in by , 3 years ago | |
---|---|
File size: 5.0 KB |
-
../trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh
121 121 ${MATLAB_PATH}/bin/matlab -nojvm -nosplash -nojvm -r "try, addpath ${ISSM_DIR}/bin ${ISSM_DIR}/lib; runme(${MATLAB_NROPTIONS}); exit; catch me,fprintf('%s',getReport(me)); exit; end" &> matlab.log 122 122 123 123 # Check that MATLAB did not exit in error 124 matlabExitedInError=`grep -E "Activation cannot proceed|Error in matlab_run|Illegal use of reserved keyword " matlab.log | wc -l`124 matlabExitedInError=`grep -E "Activation cannot proceed|Error in matlab_run|Illegal use of reserved keyword|Invalid MEX-file" matlab.log | wc -l` 125 125 126 126 if [ ${matlabExitedInError} -ne 0 ]; then 127 127 echo "----------MATLAB exited in error!----------" … … 135 135 fi 136 136 137 137 # Check that all tests passed 138 numTestsFailed=` cat matlab.log | grep -c -e "FAILED|ERROR"`138 numTestsFailed=`grep -E "FAILED|ERROR" matlab.log | wc -l` 139 139 140 140 if [ ${numTestsFailed} -ne 0 ]; then 141 141 echo "One or more tests FAILED" -
../trunk-jpl/packagers/linux/package-issm-linux-binaries-python-2.sh
135 135 fi 136 136 137 137 # Check that all tests passed 138 numTestsFailed=` cat python.log | grep -c -e "FAILED|ERROR"`138 numTestsFailed=`grep -E "FAILED|ERROR" python.log | wc -l` 139 139 140 140 if [[ ${numTestsFailed} -ne 0 ]]; then 141 141 echo "One or more tests FAILED" -
../trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh
138 138 fi 139 139 140 140 # Check that all tests passed 141 numTestsFailed=` cat python.log | grep -c -e "FAILED|ERROR"`141 numTestsFailed=`grep -E "FAILED|ERROR" python.log | wc -l` 142 142 143 143 if [[ ${numTestsFailed} -ne 0 ]]; then 144 144 echo "One or more tests FAILED" -
../trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh
149 149 fi 150 150 151 151 # Check that all tests passed 152 numTestsFailed=` cat matlab.log | grep -c -e "FAILED|ERROR"`152 numTestsFailed=`grep -E "FAILED|ERROR" matlab.log | wc -l` 153 153 154 154 if [ ${numTestsFailed} -ne 0 ]; then 155 155 echo "One or more tests FAILED" -
../trunk-jpl/packagers/mac/package-issm-mac-binaries-python-2.sh
147 147 fi 148 148 149 149 # Check that all tests passed 150 numTestsFailed=` cat python.log | grep -c -e "FAILED|ERROR"`150 numTestsFailed=`grep -E "FAILED|ERROR" python.log | wc -l` 151 151 152 152 if [ ${numTestsFailed} -ne 0 ]; then 153 153 echo "One or more tests FAILED" -
../trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh
150 150 fi 151 151 152 152 # Check that all tests passed 153 numTestsFailed=` cat python.log | grep -c -e "FAILED|ERROR"`153 numTestsFailed=`grep -E "FAILED|ERROR" python.log | wc -l` 154 154 155 155 if [ ${numTestsFailed} -ne 0 ]; then 156 156 echo "One or more tests FAILED" -
../trunk-jpl/src/wrappers/matlab/Makefile.am
121 121 if MAC 122 122 AM_LDFLAGS += -Wl,-rpath,'@rpath' 123 123 else 124 AM_LDFLAGS += -Wl,-static -Wl,- -disable-new-dtags -Wl,-rpath,'$$ORIGIN'124 AM_LDFLAGS += -Wl,-static -Wl,-lbacktrace -Wl,--disable-new-dtags -Wl,-rpath,'$$ORIGIN' 125 125 endif 126 126 endif 127 127 -
../trunk-jpl/src/wrappers/python/Makefile.am
75 75 if MAC 76 76 AM_LDFLAGS += -Wl,-rpath,'@rpath' 77 77 else 78 AM_LDFLAGS += -Wl,-static -Wl,- -disable-new-dtags -Wl,-rpath,'$$ORIGIN'78 AM_LDFLAGS += -Wl,-static -Wl,-lbacktrace -Wl,--disable-new-dtags -Wl,-rpath,'$$ORIGIN' 79 79 endif 80 80 endif 81 81
Note:
See TracBrowser
for help on using the repository browser.