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

* test/ruby/test_rubyoptions.rb (TestRubyOptions#test_set_program_name):

should show some messages when skippning tests.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2011-06-07 09:16:02 +00:00
parent b59179c873
commit 01fd022811
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Jun 7 18:15:00 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* test/ruby/test_rubyoptions.rb (TestRubyOptions#test_set_program_name):
should show some messages when skippning tests.
Tue Jun 7 13:59:47 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/date/date_core.c (date_s_today, datetime_s_now): check the

View file

@ -418,7 +418,7 @@ class TestRubyOptions < Test::Unit::TestCase
end
def test_set_program_name
skip if /linux|freebsd|netbsd|openbsd/ !~ RUBY_PLATFORM
skip "platform dependent feature" if /linux|freebsd|netbsd|openbsd/ !~ RUBY_PLATFORM
with_tmpchdir do
write_file("test-script", "$0 = 'hello world'; sleep 60")