diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-06-17 05:29:51 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-06-17 05:29:51 +0000 |
commit | bbf440c90b036c733729b1a5c996978ac2adaa9d (patch) | |
tree | 63a68dca7be09eb7be8a1d5e9c58bb5726688ee9 /bootstraptest | |
parent | 3759dfa23e6d6106d93a5c9bf845b0fc620a2512 (diff) | |
download | ruby-bbf440c90b036c733729b1a5c996978ac2adaa9d.tar.gz |
* include/ruby/ruby.h: $SAFE=3 is now obsolete.
* ext/socket/init.c, ext/socket/socket.c, ext/socket/tcpsocket.c
ext/socket/udpsocket.c, gc.c, object.c, re.c, safe.c: removed code
for $SAFE=3
* bootstraptest/test_method.rb, test/erb/test_erb.rb, test/ruby/test_dir.rb
test/ruby/test_file.rb, test/ruby/test_method.rb, test/ruby/test_regexp.rb
test/ruby/test_thread.rb: remove tests for $SAFE=3
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_method.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bootstraptest/test_method.rb b/bootstraptest/test_method.rb index 0a7cb0a577..749874cc5a 100644 --- a/bootstraptest/test_method.rb +++ b/bootstraptest/test_method.rb @@ -922,22 +922,6 @@ assert_equal 'ok', %q{ }, '[ruby-core:11998]' assert_equal 'ok', %q{ - proc{ - $SAFE = 3 - class C - def m - :ng - end - end - }.call - begin - C.new.m - rescue SecurityError - :ok - end -}, '[ruby-core:11998]' - -assert_equal 'ok', %q{ class B def m() :fail end end |