summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_rubyoptions.rb8
1 files changed, 8 insertions, 0 deletions
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