hcl/t/err.sh
hyung-hwan f3c0c1b8c1
Some checks failed
continuous-integration/drone/push Build is failing
enhanced the compiler to prohibit variable declaration in class init scope
2023-11-27 18:25:27 +09:00

25 lines
710 B
Bash

#!/bin/sh
for i in $@; do :; done
script="$i"
expected_errinfo=$(grep -n -o -E "##ERROR: .+" "$script" 2>/dev/null)
[ -z "$expected_errinfo" ] && {
echo "INVALID TESTER - $script contains no ERROR information"
exit 1
}
expected_errline=$(echo $expected_errinfo | cut -d: -f1)
xlen=$(echo $expected_errline | wc -c)
xlen=$(expr $xlen + 10)
expected_errmsg=$(echo $expected_errinfo | cut -c${xlen}-)
output=$($@ 2>&1)
## the regular expression is not escaped properly. the error information must not
## include specifial regex characters to avoid problems.
echo "$output" | grep -E "ERROR:.+${script}\[${expected_errline},[[:digit:]]+\] ${expected_errmsg}" || {
echo "$script - $output"
exit 1
}
exit 0