1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_process.rb (TestProcess#test_no_curdir): maybe now

we can test it.

* test/ruby/test_thread.rb (TestThread#test_thread_timer_and_interrupt):
  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40550 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2013-05-02 03:34:15 +00:00
parent 25acda257c
commit 50cc7057af
4 changed files with 11 additions and 7 deletions

View file

@ -3,6 +3,12 @@ Thu May 2 11:32:22 2013 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (poll_child_status): [experimental] set the cause of
a child's death to status if its exitcode seems to be an error.
* test/ruby/test_process.rb (TestProcess#test_no_curdir): maybe now
we can test it.
* test/ruby/test_thread.rb (TestThread#test_thread_timer_and_interrupt):
ditto.
Thu May 2 11:24:00 2013 Zachary Scott <zachary@zacharyscott.net>
* lib/yaml.rb: nodoc EngineManager, add History doc #8344

View file

@ -1356,7 +1356,7 @@ class TestProcess < Test::Unit::TestCase
}
assert(status.success?, "[ruby-dev:38105]")
}
end unless /mswin|bccwin|mingw/ =~ RUBY_PLATFORM
end
def test_fallback_to_sh
feature = '[ruby-core:32745]'

View file

@ -743,12 +743,9 @@ _eom
end
t1 = Time.now.to_f
assert_equal(pid, s.pid, bug5757)
unless /mswin|mingw/ =~ RUBY_PLATFORM
# status of signal is not supported on Windows
assert_equal([false, true, false, Signal.list["INT"]],
[s.exited?, s.signaled?, s.stopped?, s.termsig],
"[s.exited?, s.signaled?, s.stopped?, s.termsig]")
end
assert_equal([false, true, false, Signal.list["INT"]],
[s.exited?, s.signaled?, s.stopped?, s.termsig],
"[s.exited?, s.signaled?, s.stopped?, s.termsig]")
assert_in_delta(t1 - t0, 1, 1, bug5757)
end

View file

@ -3927,6 +3927,7 @@ poll_child_status(struct ChildRecord *child, int *stat_loc)
{STATUS_FLOAT_UNDERFLOW, SIGFPE},
{STATUS_FLOAT_MULTIPLE_FAULTS, SIGFPE},
{STATUS_FLOAT_MULTIPLE_TRAPS, SIGFPE},
{STATUS_CONTROL_C_EXIT, SIGINT},
{0, 0}
};
int i;