prevent carry-over conditions
[god.git] / test / configs / child_polls / simple_server.rb
blob0c43286bfcf603ec1c3d99cb59b2039f24ad915b
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 10
12 end