mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
#!/usr/local/bin/ruby
 | 
						|
 | 
						|
uri = ARGV.shift || raise("usage: #{$0} URI")
 | 
						|
N = (ARGV.shift || 100).to_i
 | 
						|
 | 
						|
case uri
 | 
						|
when /^tcpromp:/, /^unixromp:/
 | 
						|
  require 'romp'
 | 
						|
 | 
						|
  client = ROMP::Client.new(uri, false)
 | 
						|
  foo = client.resolve("foo")
 | 
						|
when /^druby:/
 | 
						|
  require 'drb/drb'
 | 
						|
 | 
						|
  DRb.start_service
 | 
						|
  foo = DRbObject.new(nil, uri)
 | 
						|
end
 | 
						|
 | 
						|
N.times do |n|
 | 
						|
  foo.foo(n)
 | 
						|
end
 |