From 64150b1beebfde251ba51cd4fa5d3c79c4620c5e Mon Sep 17 00:00:00 2001 From: wcohen Date: Wed, 4 Jan 2006 17:00:37 +0000 Subject: Improve test coverage. --- ChangeLog | 4 ++++ testsuite/buildok/printf.stp | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index de45d2eb..65cca630 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-01-04 Will Cohen + + * testsuite/buildok/printf.stp: Improve test coverage. + 2006-01-03 Frank Ch. Eigler * tapsets.cxx (emit_deregistration): Fix bad thinko on loop nesting. diff --git a/testsuite/buildok/printf.stp b/testsuite/buildok/printf.stp index 2a76a0e9..badea63a 100755 --- a/testsuite/buildok/printf.stp +++ b/testsuite/buildok/printf.stp @@ -26,5 +26,9 @@ probe begin sprintf("%s before %s", sprint(1), sprint(3)), sprint("C")) - printf("\"quote\\this\"") + printf("\"quote\\this\"\n") + printf("%d is %03o in octal\n", 9, 9) + printf("%d is %#X in hex\n", 255, 255) + printf("print unsigned %u\n", 17) + printf("-% d is % d\n", 9, -9) } -- cgit