aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGavin Howard <gavin@yzena.com>2021-07-20 23:06:20 -0600
committerGavin Howard <gavin@yzena.com>2021-07-20 23:06:20 -0600
commite9f2581d6c5021d9bc5136e2053cab0171174501 (patch)
tree81b6052c592455c9fedfb4263703815d50a57430 /tests
parent5d7bb465433313afbd20e0a618b366448c07eefa (diff)
downloadplatform_external_bc-e9f2581d6c5021d9bc5136e2053cab0171174501.tar.gz
platform_external_bc-e9f2581d6c5021d9bc5136e2053cab0171174501.tar.bz2
platform_external_bc-e9f2581d6c5021d9bc5136e2053cab0171174501.zip
Tweak test names
Signed-off-by: Gavin Howard <gavin@yzena.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/other.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/other.sh b/tests/other.sh
index d7f23b82..fed4fbf0 100755
--- a/tests/other.sh
+++ b/tests/other.sh
@@ -144,18 +144,18 @@ if [ "$d" = "bc" ]; then
"$exe" -e 'define print(x) { x }' -e 'print(5)' "$@" > "$redefine_out"
- checktest "$d" "$err" "Keyword redefinition" "$redefine_res" "$redefine_out"
+ checktest "$d" "$err" "keyword redefinition" "$redefine_res" "$redefine_out"
printf '5\n0\n' > "$redefine_res"
"$exe" -e 'define void abs(x) { x }' -e 'abs(5);0' "$@" > "$redefine_out"
- checktest "$d" "$err" "Keyword redefinition" "$redefine_res" "$redefine_out"
+ checktest "$d" "$err" "keyword redefinition" "$redefine_res" "$redefine_out"
"$exe" -e 'define break(x) { x }' "$@" 2> "$redefine_out"
err="$?"
- checkerrtest "$d" "$err" "Keyword redefinition error" "$redefine_out" "$d"
+ checkerrtest "$d" "$err" "keyword redefinition error" "$redefine_out" "$d"
unset BC_REDEFINE_KEYWORDS