summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/out1.stp
blob: 9aa5f0b49e21fa141f780171a7088d978c6540d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
# output "large_output" pattern using printf.

# This should detect any problems in the printf code, output
# buffers or transport.

probe begin 
{
  for (j = 0; j < 3000; j++)
    printf("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\n")
  exit()
}