summaryrefslogtreecommitdiffstats
path: root/bootstraptest
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-23 17:17:23 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-23 17:17:23 +0000
commitd368dc085f4167a7564a64e2da07539e3160369b (patch)
treef8efa38141fc346fddc0030ef9ed95a298de8e4b /bootstraptest
parentec763d64ca2ebeae182d71b51f6344032e92d4b5 (diff)
downloadruby-d368dc085f4167a7564a64e2da07539e3160369b.tar.gz
ruby-d368dc085f4167a7564a64e2da07539e3160369b.tar.xz
ruby-d368dc085f4167a7564a64e2da07539e3160369b.zip
* insns.def (expandarray): fix stack inc.
* bootstraptest/test_knownbug.rb, test_massign.rb: move a fixed test. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15197 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_knownbug.rb8
-rw-r--r--bootstraptest/test_massign.rb7
2 files changed, 7 insertions, 8 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 9b688fca0..6d1c4721d 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -17,14 +17,6 @@ assert_equal 'ok', %q{
end
}, '[ruby-core:14537]'
-assert_equal 'ok', %q{
- while true
- *, z = 1
- break
- end
- :ok
-}, '[ruby-dev:32892]'
-
assert_equal 'ok', %q{
1.times do
diff --git a/bootstraptest/test_massign.rb b/bootstraptest/test_massign.rb
index ad31729a7..0f63dd424 100644
--- a/bootstraptest/test_massign.rb
+++ b/bootstraptest/test_massign.rb
@@ -174,3 +174,10 @@ assert_equal 'ok', %q{
:ok
}, '[ruby-dev:32581]'
+assert_equal 'ok', %q{
+ while true
+ *, z = 1
+ break
+ end
+ :ok
+}, '[ruby-dev:32892]'