vote up 1 vote down star

Can i determine selves process exit status in at_exit block?

at_exit do
  if this_process_status.success?
    print 'Success'
  else
    print 'Failure'
  end
end
flag

2 Answers

vote up 2 vote down

Although the documentation on this is really thin, $! is set to be the last exception that occurs, and after an exit() call this is a SystemExit exception. Putting those two together you get this:

at_exit do
  if ($!.success?)
    print 'Success'
  else
    print 'Failure'
  end
end
link|flag
That will be the case only if exit will be called. Surely I can be test if $! is nil or is SystemExit which answers true on success? But is it possible to get Process::Status object or it is not created for the top process? – tig Jul 18 at 12:12
using your idea I got answer and posted but I don't know which answer is better to mark - yours or mine? – tig Jul 20 at 16:52
Whatever works for you. Didn't know you could "answer" your own question, but okay. – tadman Jul 21 at 18:54
vote up 0 vote down check

using idea from tadman

at_exit do
  if $!.nil? || $!.is_a?(SystemExit) && $!.success?
    print 'success'
  else
    code = $!.is_a?(SystemExit) ? $!.status : 1
    print "failure with code #{code}"
  end
end
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.