summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/benchmark/prepare_so_count_words.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/benchmark/prepare_so_count_words.rb')
-rw-r--r--ruby_1_9_3/benchmark/prepare_so_count_words.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/ruby_1_9_3/benchmark/prepare_so_count_words.rb b/ruby_1_9_3/benchmark/prepare_so_count_words.rb
new file mode 100644
index 0000000000..ee2138cdb2
--- /dev/null
+++ b/ruby_1_9_3/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