369d3ddf1c8428a0289ea96c1c0069c2987c5565
[god.git] / test / configs / child_polls / simple_server.rb
blob369d3ddf1c8428a0289ea96c1c0069c2987c5565
1 #! /usr/bin/env ruby
3 data = ''
4     
5 loop do
6   STDOUT.puts('server');
7   STDOUT.flush;
8   
9   100000.times { data << 'x' }
10   
11   sleep 0.1
12 end