svn commit: r337728 - head/usr.bin/printf/tests

Jilles Tjoelker jilles at FreeBSD.org
Mon Aug 13 21:54:28 UTC 2018


Author: jilles
Date: Mon Aug 13 21:54:27 2018
New Revision: 337728
URL: https://svnweb.freebsd.org/changeset/base/337728

Log:
  printf: Add test for width and precision in %b format
  
  PR:		229641
  Submitted by:	pfg

Added:
  head/usr.bin/printf/tests/regress.bwidth.out   (contents, props changed)
Modified:
  head/usr.bin/printf/tests/Makefile
  head/usr.bin/printf/tests/regress.sh

Modified: head/usr.bin/printf/tests/Makefile
==============================================================================
--- head/usr.bin/printf/tests/Makefile	Mon Aug 13 21:53:18 2018	(r337727)
+++ head/usr.bin/printf/tests/Makefile	Mon Aug 13 21:54:27 2018	(r337728)
@@ -5,6 +5,7 @@ PACKAGE=	tests
 TAP_TESTS_SH=	legacy_test
 
 ${PACKAGE}FILES+=		regress.b.out
+${PACKAGE}FILES+=		regress.bwidth.out
 ${PACKAGE}FILES+=		regress.d.out
 ${PACKAGE}FILES+=		regress.f.out
 ${PACKAGE}FILES+=		regress.l1.out

Added: head/usr.bin/printf/tests/regress.bwidth.out
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/usr.bin/printf/tests/regress.bwidth.out	Mon Aug 13 21:54:27 2018	(r337728)
@@ -0,0 +1 @@
+      a

Modified: head/usr.bin/printf/tests/regress.sh
==============================================================================
--- head/usr.bin/printf/tests/regress.sh	Mon Aug 13 21:53:18 2018	(r337727)
+++ head/usr.bin/printf/tests/regress.sh	Mon Aug 13 21:54:27 2018	(r337728)
@@ -2,7 +2,7 @@
 
 REGRESSION_START($1)
 
-echo '1..23'
+echo '1..24'
 
 REGRESSION_TEST(`b', `printf "abc%b%b" "def\n" "\cghi"')
 REGRESSION_TEST(`d', `printf "%d,%5d,%.5d,%0*d,%.*d\n" 123 123 123 5 123 5 123')
@@ -27,5 +27,6 @@ REGRESSION_TEST(`missingpos1', `printf "%*.*1\$s" 1 1 
 REGRESSION_TEST(`missingpos1', `printf "%1\$*2\$.*s" 1 1 1 2>&1')
 REGRESSION_TEST(`missingpos1', `printf "%*1\$.*2\$s" 1 1 1 2>&1')
 REGRESSION_TEST(`missingpos1', `printf "%1\$*.*2\$s" 1 1 1 2>&1')
+REGRESSION_TEST(`bwidth', `printf "%8.2b" "a\nb\n"')
 
 REGRESSION_END()


More information about the svn-src-head mailing list