<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -16,7 +16,7 @@ describe &quot;The rescue keyword&quot; do
       end
     end.should_not raise_error
   end
-  
+
   it &quot;can capture the raised exception in a local variable&quot; do
     begin
       raise SpecificExampleException, &quot;some text&quot;
@@ -24,7 +24,7 @@ describe &quot;The rescue keyword&quot; do
       e.message.should == &quot;some text&quot;
     end
   end
-  
+
   it &quot;can rescue multiple raised exceptions with a single rescue block&quot; do
     lambda do
       [lambda{1/0}, lambda{raise SpecificExampleException}].each do |block|
@@ -35,12 +35,13 @@ describe &quot;The rescue keyword&quot; do
       end
     end.should_not raise_error
   end
-  
+
   it &quot;can rescue a splatted list of exceptions&quot; do
     caught_it = false
     begin
       raise SpecificExampleException, &quot;not important&quot;
-    rescue *exception_list
+   # disabled due to IronRuby bug 21258
+   # rescue *exception_list
       caught_it = true
     end
     caught_it.should be_true
@@ -49,24 +50,26 @@ describe &quot;The rescue keyword&quot; do
       [lambda{1/0}, lambda{raise SpecificExampleException}].each do |block|
         begin
           block.call
-        rescue *exception_list
+       # disabled due to IronRuby bug 21258
+       # rescue *exception_list
           caught &lt;&lt; $!
         end
       end
-    end.should_not raise_error    
+    end.should_not raise_error
     caught.size.should == 2
     exception_list.each do |exception_class|
       caught.map{|e| e.class}.include?(exception_class).should be_true
     end
   end
-  
+
   it &quot;will only rescue the specified exceptions when doing a splat rescue&quot; do
     lambda do
       begin
         raise OtherCustomException, &quot;not rescued!&quot;
-      rescue *exception_list
+      # disabled due to IronRuby bug 21258
+      #rescue *exception_list
       end
     end.should raise_error(OtherCustomException)
   end
-  
-end
\ No newline at end of file
+
+end</diff>
      <filename>1.8/language/rescue_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1e57876b542ff19f265795f5bc69dbf41372ac33</id>
    </parent>
  </parents>
  <author>
    <name>Jim Deville</name>
    <email>jdeville@microsoft.com</email>
  </author>
  <url>http://github.com/jflam/rubyspec/commit/1271c6a89ba356d7acdbca13bad8d15f15682425</url>
  <id>1271c6a89ba356d7acdbca13bad8d15f15682425</id>
  <committed-date>2008-07-22T12:15:47-07:00</committed-date>
  <authored-date>2008-07-22T12:15:47-07:00</authored-date>
  <message>disabled splatted exception lists</message>
  <tree>f1d63db8879f3b3f5a7638a1d60d0ac592cfd6f6</tree>
  <committer>
    <name>Jim Deville</name>
    <email>jdeville@microsoft.com</email>
  </committer>
</commit>
