diff options
author | wcohen <wcohen> | 2006-01-04 17:00:37 +0000 |
---|---|---|
committer | wcohen <wcohen> | 2006-01-04 17:00:37 +0000 |
commit | 64150b1beebfde251ba51cd4fa5d3c79c4620c5e (patch) | |
tree | 817083842d4c6b271bb8564a3786aad305db674b | |
parent | af9ea5eea199993102cf4aae0bcdd83bddedca91 (diff) | |
download | systemtap-steved-64150b1beebfde251ba51cd4fa5d3c79c4620c5e.tar.gz systemtap-steved-64150b1beebfde251ba51cd4fa5d3c79c4620c5e.tar.xz systemtap-steved-64150b1beebfde251ba51cd4fa5d3c79c4620c5e.zip |
Improve test coverage.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | testsuite/buildok/printf.stp | 6 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2006-01-04 Will Cohen <wcohen@redhat.com> + + * testsuite/buildok/printf.stp: Improve test coverage. + 2006-01-03 Frank Ch. Eigler <fche@redhat.com> * 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) } |