summaryrefslogtreecommitdiff
path: root/KNOWNBUGS.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-04 07:48:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-04 07:48:22 +0000
commitcae3905e89ebfbfffa181bf94c3ed4550ef87619 (patch)
tree4812f00c869bd0581479fc8c8e5cbe8bfa13a87f /KNOWNBUGS.rb
parent7eb6942dbb0b2567739b6dba7c94741d14501c52 (diff)
string.c: should not taint fstring
* string.c (rb_obj_as_string): fstring should not be infected. re-apply r52872 and fix a typo. TODO: other frozen strings also may not be. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'KNOWNBUGS.rb')
-rw-r--r--KNOWNBUGS.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/KNOWNBUGS.rb b/KNOWNBUGS.rb
index d53bdb753b..b97a08d928 100644
--- a/KNOWNBUGS.rb
+++ b/KNOWNBUGS.rb
@@ -3,12 +3,3 @@
# So all tests will cause failure.
#
-assert_equal 'false', %q{
- x = Object.new.taint
- class << x
- def to_s; "foo".freeze; end
- end
- x.taint
- [x].join("")
- eval '"foo".freeze.tainted?'
-}