diff --git a/tests/usr.bin/cc/t_ubsan_int_add_overflow.sh b/tests/usr.bin/cc/t_ubsan_int_add_overflow.sh index d20265bfe1a2..40b585147709 100644 --- a/tests/usr.bin/cc/t_ubsan_int_add_overflow.sh +++ b/tests/usr.bin/cc/t_ubsan_int_add_overflow.sh @@ -156,11 +156,11 @@ EOF file -b ./md32 > ./ftype32 file -b ./md64 > ./ftype64 if diff ./ftype32 ./ftype64 >/dev/null; then - atf_fail "Generated binz ain't no different" + atf_fail "Generated 32bit binaries do not differ from 64bit ones" fi - echo "32bit Binz on this platform are:" + echo "32bit binaries on this platform are:" cat ./ftype32 - echo "64bit Binz are on the other hand:" + echo "64bit binaries are on the other hand:" cat ./ftype64 atf_check -e match:"signed integer overflow" ./md32 diff --git a/tests/usr.bin/cc/t_ubsan_int_divzero.sh b/tests/usr.bin/cc/t_ubsan_int_divzero.sh index d646cde6eeaa..9772a0841910 100644 --- a/tests/usr.bin/cc/t_ubsan_int_divzero.sh +++ b/tests/usr.bin/cc/t_ubsan_int_divzero.sh @@ -150,11 +150,11 @@ EOF file -b ./md32 > ./ftype32 file -b ./md64 > ./ftype64 if diff ./ftype32 ./ftype64 >/dev/null; then - atf_fail "Generated binz ain't no different" + atf_fail "Generated 32bit binaries do not differ from 64bit ones" fi - echo "32bit Binz on this platform are:" + echo "32bit binaries on this platform are:" cat ./ftype32 - echo "64bit Binz are on the other hand:" + echo "64bit binaries are on the other hand:" cat ./ftype64 atf_check -s signal:8 -e match:"division by zero" ./md32 diff --git a/tests/usr.bin/cc/t_ubsan_int_neg_overflow.sh b/tests/usr.bin/cc/t_ubsan_int_neg_overflow.sh index 80981a0aeb71..4ba17b8ee10c 100644 --- a/tests/usr.bin/cc/t_ubsan_int_neg_overflow.sh +++ b/tests/usr.bin/cc/t_ubsan_int_neg_overflow.sh @@ -156,11 +156,11 @@ EOF file -b ./md32 > ./ftype32 file -b ./md64 > ./ftype64 if diff ./ftype32 ./ftype64 >/dev/null; then - atf_fail "Generated binz ain't no different" + atf_fail "Generated 32bit binaries do not differ from 64bit ones" fi - echo "32bit Binz on this platform are:" + echo "32bit binaries on this platform are:" cat ./ftype32 - echo "64bit Binz are on the other hand:" + echo "64bit binaries are on the other hand:" cat ./ftype64 atf_check -e match:"negation of" ./md32 diff --git a/tests/usr.bin/cc/t_ubsan_int_sub_overflow.sh b/tests/usr.bin/cc/t_ubsan_int_sub_overflow.sh index ee36b22e3a2c..d155da1ffa11 100644 --- a/tests/usr.bin/cc/t_ubsan_int_sub_overflow.sh +++ b/tests/usr.bin/cc/t_ubsan_int_sub_overflow.sh @@ -156,11 +156,11 @@ EOF file -b ./md32 > ./ftype32 file -b ./md64 > ./ftype64 if diff ./ftype32 ./ftype64 >/dev/null; then - atf_fail "Generated binz ain't no different" + atf_fail "Generated 32bit binaries do not differ from 64bit ones" fi - echo "32bit Binz on this platform are:" + echo "32bit binaries on this platform are:" cat ./ftype32 - echo "64bit Binz are on the other hand:" + echo "64bit binaries are on the other hand:" cat ./ftype64 atf_check -s ignore -e match:"signed integer overflow" ./md32 diff --git a/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh b/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh index d0cf6f94a4d6..c18e3fa82d10 100644 --- a/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh +++ b/tests/usr.bin/cc/t_ubsan_vla_out_of_bounds.sh @@ -153,11 +153,11 @@ EOF file -b ./md32 > ./ftype32 file -b ./md64 > ./ftype64 if diff ./ftype32 ./ftype64 >/dev/null; then - atf_fail "Generated binz ain't no different" + atf_fail "Generated 32bit binaries do not differ from 64bit ones" fi - echo "32bit Binz on this platform are:" + echo "32bit binaries on this platform are:" cat ./ftype32 - echo "64bit Binz are on the other hand:" + echo "64bit binaries are on the other hand:" cat ./ftype64 atf_check -e match:"out of bounds" ./md32