diff options
Diffstat (limited to 'benchmark/prepare_so_count_words.rb')
-rw-r--r-- | benchmark/prepare_so_count_words.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/benchmark/prepare_so_count_words.rb b/benchmark/prepare_so_count_words.rb new file mode 100644 index 000000000..54ea72b8e --- /dev/null +++ b/benchmark/prepare_so_count_words.rb @@ -0,0 +1,15 @@ +# prepare 'wc.input'
+
+def prepare_wc_input
+ wcinput = File.join(File.dirname($0), 'wc.input')
+ wcbase = File.join(File.dirname($0), 'wc.input.base')
+ unless FileTest.exist?(wcinput)
+ data = File.read(wcbase)
+ 13.times{
+ data << data
+ }
+ open(wcinput, 'w'){|f| f.write data}
+ end
+end
+
+prepare_wc_input
|