We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ff7158 + c8fc2e8 commit edd5b26Copy full SHA for edd5b26
ODIN_II/exec_wrapper.sh
@@ -175,12 +175,13 @@ function display() {
175
esac
176
177
# check for uncaught errors
178
-
179
ERROR_CATCH="$(cat "${LOG_FILE}" | grep 'Odin exited with code: ' | awk '{print $5}' | grep -E '^\-?[0-9]+$')"
180
[ "_${ERROR_CATCH}" != "_" ] && EXIT_CODE="${ERROR_CATCH}"
181
182
EXIT_ERROR_TYPE=$( print_exit_type "${EXIT_CODE}" )
183
+ MISMATCH_CHECK="$(cat "${LOG_FILE}" | grep "Error::OUTPUT_BLIF Vector files differ.")"
184
+ [ "_${MISMATCH_CHECK}" != "_" ] && EXIT_ERROR_TYPE="MISMATCH"
185
186
if [ "_${EXIT_CODE}" == "_0" ] && [ "_${LEAK_MESSAGE}" == "_" ]
187
then
0 commit comments