Changeset 27064
- Timestamp:
- 06/15/22 12:54:43 (3 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh
r26762 r27064 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 … … 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 -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-2.sh
r26988 r27064 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 -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh
r26992 r27064 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 -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh
r26765 r27064 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 -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-2.sh
r27002 r27064 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 -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh
r27013 r27064 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 -
issm/trunk-jpl/src/wrappers/matlab/Makefile.am
r26415 r27064 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 -
issm/trunk-jpl/src/wrappers/python/Makefile.am
r26377 r27064 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
Note:
See TracChangeset
for help on using the changeset viewer.