aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2017-03-12 04:08:36 +0000
committerEnji Cooper <ngie@FreeBSD.org>2017-03-12 04:08:36 +0000
commit3947900cdc337e30be5ac10772ef7f813da3da18 (patch)
tree0ce80f5fa381e396b6d520bb57797d916e920c57
parentd5b187aefb8832bb5435f8c0c33ba954d9424e43 (diff)
downloadsrc-3947900cdc337e30be5ac10772ef7f813da3da18.tar.gz
src-3947900cdc337e30be5ac10772ef7f813da3da18.zip
Restore some of the error message text accidentally removed in r315098
"unexpected symlink contents" is more pedantically correct than "unexpected symlink". MFC after: 1 week X-MFC with: r315098 Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=315108
-rwxr-xr-xusr.bin/xinstall/tests/install_test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/xinstall/tests/install_test.sh b/usr.bin/xinstall/tests/install_test.sh
index 04748ee3f478..4332f9b8268c 100755
--- a/usr.bin/xinstall/tests/install_test.sh
+++ b/usr.bin/xinstall/tests/install_test.sh
@@ -286,7 +286,7 @@ symbolic_link_absolute_body() {
copyf_path=$(readlink copyf)
testf_path="$(pwd -P)/testf"
if [ "$copyf_path" != "$testf_path" ]; then
- atf_fail "unexpected symlink ('$copyf_path' != '$testf_path')"
+ atf_fail "unexpected symlink contents ('$copyf_path' != '$testf_path')"
fi
}
@@ -299,7 +299,7 @@ symbolic_link_relative_body() {
copyf_path=$(readlink copyf)
testf_path="testf"
if [ "$copyf_path" != "$testf_path" ]; then
- atf_fail "unexpected symlink ('$copyf_path' != '$testf_path')"
+ atf_fail "unexpected symlink contents ('$copyf_path' != '$testf_path')"
fi
}