Module Name: src
Committed By: kre
Date: Tue Nov 12 18:59:52 UTC 2019
Modified Files:
src/tests/usr.bin/printf: printf.sh
Log Message:
Add a missing ("quoting") '>' in an atf_fail error message string.
Since the tests don't (usually) fail no-one ever noticed the missing char.
That is, the "received this" and "expected this" strings were supposed
to appear in the output err message as "<<string>>" but one of those
closing '>' chars was missing.
No-one should ever notice this change in normal operation, as the tests
are not intended to fail.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/usr.bin/printf/printf.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/usr.bin/printf/printf.sh
diff -u src/tests/usr.bin/printf/printf.sh:1.4 src/tests/usr.bin/printf/printf.sh:1.5
--- src/tests/usr.bin/printf/printf.sh:1.4 Sun Jul 21 15:25:59 2019
+++ src/tests/usr.bin/printf/printf.sh Tue Nov 12 18:59:51 2019
@@ -1,4 +1,4 @@
-# $NetBSD: printf.sh,v 1.4 2019/07/21 15:25:59 kre Exp $
+# $NetBSD: printf.sh,v 1.5 2019/11/12 18:59:51 kre Exp $
#
# Copyright (c) 2018 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -118,7 +118,7 @@ expect()
(${WANT})
;;
(*)
- atf_fail "$* ... Expected <<${WANT}>> Received <<${RES}>"
+ atf_fail "$* ... Expected <<${WANT}>> Received <<${RES}>>"
;;
esac
fi