diff options
Diffstat (limited to 'runtime/bench2/test_bench')
-rwxr-xr-x | runtime/bench2/test_bench | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/runtime/bench2/test_bench b/runtime/bench2/test_bench new file mode 100755 index 00000000..4bf90744 --- /dev/null +++ b/runtime/bench2/test_bench @@ -0,0 +1,25 @@ +#!/usr/bin/env ruby +load './bench.rb' + + +# script test to printf 100 chars +test3 = Stapbench.new("printf 100 chars") +test3.code = "printf(\"123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789\\n\")" +test3.run +test3.print + +test3.trans = BULK +test3.run +test3.print + +test3.trans = STREAM +test3.outfile="/dev/null" +test3.run +test3.print + +test3.trans = BULK +test3.outfile="/dev/null" +test3.run +test3.print + + |