aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--test/ruby/test_rubyoptions.rb8
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 865ff13120..57b30b8a6a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat May 14 19:52:22 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * test/ruby/test_rubyoptions.rb (TestRubyOptions#test_set_program_name):
+ add for $0 test.
+
Sat May 14 19:50:46 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* missing/setproctitle.c (compat_init_setproctitle): use
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index c483d1f216..d0522da06c 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -400,6 +400,14 @@ class TestRubyOptions < Test::Unit::TestCase
}
end
+ def test_set_program_name
+ skip if /linux|freebsd|netbsd|openbsd/ !~ RUBY_PLATFORM
+
+ $0 = 'hello world'
+ ps = `ps -p #{$$} -o cmd`
+ assert_match(/hello world/, ps)
+ end
+
def test_segv_test
opts = {}
if /mswin|mingw/ =~ RUBY_PLATFORM