From 46d94f40caa92b408b9fdd6cefedea70aa9150b7 Mon Sep 17 00:00:00 2001
From: Jim Deville <jdeville@microsoft.com>
Date: Tue, 8 Jul 2008 14:12:56 -0700
Subject: [PATCH] added guards for continuation

---
 1.8/core/continuation/continuation_spec.rb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/1.8/core/continuation/continuation_spec.rb b/1.8/core/continuation/continuation_spec.rb
index 443d4cd..41b088a 100644
--- a/1.8/core/continuation/continuation_spec.rb
+++ b/1.8/core/continuation/continuation_spec.rb
@@ -13,7 +13,7 @@ require File.dirname(__FILE__) + '/../../spec_helper'
 
 
 describe "Creating a Continuation object" do
-  not_supported_on :jruby do
+  not_supported_on :jruby,:ir do
     it "must be done through Kernel.callcc, no .new" do
       lambda { Continuation.new }.should raise_error(NoMethodError)
 
@@ -26,7 +26,7 @@ end
 
 
 describe "Executing a Continuation" do
-  not_supported_on :jruby do
+  not_supported_on :jruby,:ir do
     it "using #call transfers execution to right after the Kernel.callcc block" do
       array = [:reached, :not_reached]
 
-- 
1.5.5.1015.g9d258

