]> sourceware.org Git - systemtap.git/commitdiff
Improve test coverage.
authorwcohen <wcohen>
Wed, 4 Jan 2006 17:00:37 +0000 (17:00 +0000)
committerwcohen <wcohen>
Wed, 4 Jan 2006 17:00:37 +0000 (17:00 +0000)
ChangeLog
testsuite/buildok/printf.stp

index de45d2eb63bef594e9200643b182489b33873478..65cca630654f1ec1e3d2c05230a6985ddf94aa23 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 2a76a0e980eb9004479c417d8229398f123c2def..badea63a0c6f3e0f615c13b7e4a079258ec0920f 100755 (executable)
@@ -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)
 }
This page took 0.03343 seconds and 5 git commands to generate.