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 /testsuite/buildok/printf.stp | |
parent | af9ea5eea199993102cf4aae0bcdd83bddedca91 (diff) | |
download | systemtap-steved-64150b1beebfde251ba51cd4fa5d3c79c4620c5e.tar.gz systemtap-steved-64150b1beebfde251ba51cd4fa5d3c79c4620c5e.tar.xz systemtap-steved-64150b1beebfde251ba51cd4fa5d3c79c4620c5e.zip |
Improve test coverage.
Diffstat (limited to 'testsuite/buildok/printf.stp')
-rwxr-xr-x | testsuite/buildok/printf.stp | 6 |
1 files changed, 5 insertions, 1 deletions
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) } |