diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-22 05:09:45 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-22 05:09:45 +0000 |
| commit | b5cbc9cc72c1e55ac7a09771102eaa5d5c85ee22 (patch) | |
| tree | a4a6622cd904772f7aed7305b0154e73448bb3c2 /bootstraptest | |
| parent | 34dc62a8b3ed0a8add61618c9e698f7cb11009ff (diff) | |
| download | ruby-b5cbc9cc72c1e55ac7a09771102eaa5d5c85ee22.tar.gz ruby-b5cbc9cc72c1e55ac7a09771102eaa5d5c85ee22.tar.xz ruby-b5cbc9cc72c1e55ac7a09771102eaa5d5c85ee22.zip | |
* 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.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13228 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
| -rw-r--r-- | bootstraptest/test_knwonbug.rb | 9 | ||||
| -rw-r--r-- | bootstraptest/test_massign.rb | 2 |
2 files changed, 9 insertions, 2 deletions
diff --git a/bootstraptest/test_knwonbug.rb b/bootstraptest/test_knwonbug.rb new file mode 100644 index 000000000..069f09e41 --- /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 f0a2576d7..71b53452b 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: |
