summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-21 08:29:33 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-21 08:29:33 +0000
commitd40432de0a4a8fb742c1b7ee74d13975f83ea772 (patch)
tree0409f89efa803fed4c4d393893d00b07ef6eb0ed
parent962f40ae4e01a3a90b281b41bd7093ebabeda039 (diff)
downloadruby-d40432de0a4a8fb742c1b7ee74d13975f83ea772.tar.gz
ruby-d40432de0a4a8fb742c1b7ee74d13975f83ea772.tar.xz
ruby-d40432de0a4a8fb742c1b7ee74d13975f83ea772.zip
* bootstraptest/featurebug.rb: added.
* bootstraptest/test_knownbug.rb: move a feature bug. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--bootstraptest/featurebug.rb6
-rw-r--r--bootstraptest/test_knownbug.rb7
3 files changed, 12 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c5ba875c..e1f97eddb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Dec 21 17:28:17 2007 Koichi Sasada <ko1@atdot.net>
+
+ * bootstraptest/featurebug.rb: added.
+
+ * bootstraptest/test_knownbug.rb: move a feature bug.
+
Fri Dec 21 17:25:22 2007 Koichi Sasada <ko1@atdot.net>
* thread.c (rb_thread_atfork): fix to mark thread object.
diff --git a/bootstraptest/featurebug.rb b/bootstraptest/featurebug.rb
new file mode 100644
index 000000000..81eeba777
--- /dev/null
+++ b/bootstraptest/featurebug.rb
@@ -0,0 +1,6 @@
+assert_equal 'ok', %q{
+ 1.times{
+ eval("break")
+ }
+ :ok
+}, '[ruby-dev:32525]'
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 8b53798c2..3d3f4dbd2 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -3,13 +3,6 @@
# So all tests will cause failure.
#
-assert_equal 'ok', %q{
- 1.times{
- eval("break")
- }
- :ok
-}, '[ruby-dev:32525]'
-
assert_finish 2, %q{
require "io/nonblock"
r, w = IO.pipe