Add shunit assert messages when testing the result of regex matches,
otherwise we're left with a not very useful: "expected:<0> but was:<1>".
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
# Same as above but match against the regex pattern in $1.
output_regex_match() {
[[ "$output" =~ $1 ]]
- assertEquals "0" "$?"
+ assertEquals " '$output' did not match '$1'" "0" "$?"
}
gpiosim_chip() {
unset DUT_FIRST_CHAR
fi
[[ $LINE =~ $PATTERN ]]
- assertEquals "0" "$?"
+ assertEquals "'$LINE' did not match '$PATTERN'" "0" "$?"
}
dut_write() {