From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/benchmark/prepare_so_count_words.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 jni/ruby/benchmark/prepare_so_count_words.rb (limited to 'jni/ruby/benchmark/prepare_so_count_words.rb') diff --git a/jni/ruby/benchmark/prepare_so_count_words.rb b/jni/ruby/benchmark/prepare_so_count_words.rb new file mode 100644 index 0000000..ee2138c --- /dev/null +++ b/jni/ruby/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 -- cgit v1.2.3