summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--bootstraptest/test_knwonbug.rb9
-rw-r--r--bootstraptest/test_massign.rb2
3 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index eca4ca5266..2f2e72cadb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Wed Aug 22 14:04:53 2007 Koichi Sasada <ko1@atdot.net>
+
+ * bootstraptest/test_knwonbug.rb: added. This file will contain
+ test cases which point out known bug. If bug is fixed, tests
+ should move to the suitable place.
+
+ * bootstraptest/test_massign.rb: move a test which show known bug
+ to test_knownbug.rb.
+
Wed Aug 22 13:02:26 2007 Tanaka Akira <akr@fsij.org>
* bootstraptest/runner.rb (in_temporary_working_directory):
@@ -19,7 +28,7 @@ Wed Aug 22 03:51:07 2007 Koichi Sasada <ko1@atdot.net>
* cont.c: add Fiber#resume and Fiber.yield.
and Fiber::Core class to realize Coroutine.
- * include/ruby/intern.h: declare rb_fiber_yield(), rb_fiber_resume(),
+ * include/ruby/intern.h: declare rb_fiber_yield(), rb_fiber_resume().
* enumerator.c: use above api.
diff --git a/bootstraptest/test_knwonbug.rb b/bootstraptest/test_knwonbug.rb
new file mode 100644
index 0000000000..069f09e41f
--- /dev/null
+++ b/bootstraptest/test_knwonbug.rb
@@ -0,0 +1,9 @@
+#
+# This test file concludes tests which point out known bugs.
+# So all tests will cause failure.
+#
+
+# massign
+assert_equal '2', 'a, a = 1, 2; a', "[ruby-dev:31522]"
+
+
diff --git a/bootstraptest/test_massign.rb b/bootstraptest/test_massign.rb
index f0a2576d70..71b53452b9 100644
--- a/bootstraptest/test_massign.rb
+++ b/bootstraptest/test_massign.rb
@@ -4,8 +4,6 @@ assert_equal '[[1], 2, 3]', '*v1,(*), (a, b) = [1,:x,[2, 3]]; [v1, a, b]'
assert_equal '[]', '*a = *nil; a'
assert_equal '[nil]', '*a = nil; a'
-assert_equal '2', 'a, a = 1, 2; a', "[ruby-dev:31522]"
-
=begin
# generated by this script: