mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9d091c851a
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
42 lines
610 B
Ruby
42 lines
610 B
Ruby
require 'timeout'
|
|
|
|
def progress(n = 5)
|
|
n.times {|i| print i; STDOUT.flush; sleep 1}
|
|
puts "never reach"
|
|
end
|
|
|
|
p Timeout.timeout(5) {
|
|
45
|
|
}
|
|
p Timeout.timeout(5, Timeout::Error) {
|
|
45
|
|
}
|
|
p Timeout.timeout(nil) {
|
|
54
|
|
}
|
|
p Timeout.timeout(0) {
|
|
54
|
|
}
|
|
begin
|
|
Timeout.timeout(5) {progress}
|
|
rescue => e
|
|
puts e.message
|
|
end
|
|
begin
|
|
Timeout.timeout(3) {
|
|
begin
|
|
Timeout.timeout(5) {progress}
|
|
rescue => e
|
|
puts "never reach"
|
|
end
|
|
}
|
|
rescue => e
|
|
puts e.message
|
|
end
|
|
class MyTimeout < StandardError
|
|
end
|
|
begin
|
|
Timeout.timeout(2, MyTimeout) {progress}
|
|
rescue MyTimeout => e
|
|
puts e.message
|
|
end
|