Fix for JRUBY-2882. Handle error messages related to constructors better
[jruby.git] / bench / yarv / prepare_so_count_words.rb
blob54ea72b8ed894209ea59ee06d3b89fd6aa780770
1 # prepare 'wc.input'\r
2 \r
3 def prepare_wc_input\r
4   wcinput = File.join(File.dirname($0), 'wc.input')\r
5   wcbase  = File.join(File.dirname($0), 'wc.input.base')\r
6   unless FileTest.exist?(wcinput)\r
7     data = File.read(wcbase)\r
8     13.times{\r
9       data << data\r
10     }\r
11     open(wcinput, 'w'){|f| f.write data}\r
12   end\r
13 end\r
15 prepare_wc_input\r