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

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

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