aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-07 09:16:02 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-07 09:16:02 +0000
commit01fd0228114ccc08a3e7c937b920695a6d2b21ca (patch)
tree17771ee4abd689b4b0a98239e9dcb4e3e3340299
parentb59179c8732e7442c219abf585a2f59137de34b3 (diff)
downloadruby-01fd0228114ccc08a3e7c937b920695a6d2b21ca.tar.gz
* 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
-rw-r--r--ChangeLog5
-rw-r--r--test/ruby/test_rubyoptions.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 09aecb951a..94bd19b2a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 69a7273f58..1bce8e0565 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -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")