diff options
Diffstat (limited to 'testsuite/systemtap.printf/oct.stp')
-rw-r--r-- | testsuite/systemtap.printf/oct.stp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/systemtap.printf/oct.stp b/testsuite/systemtap.printf/oct.stp new file mode 100644 index 00000000..255ccfe5 --- /dev/null +++ b/testsuite/systemtap.printf/oct.stp @@ -0,0 +1,8 @@ +probe begin +{ + printf("\020\01\02\03\04\05\06\07") + printf("\010\011\012\013\014\015\016\017") + printf("\020\021\022\023\024\025\026\027") + printf("\030\031\032\033\034\035\036\037") + exit() +} |