From b102f138b3159cce0921f3dc9a6c415220ec9dc9 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 4 Dec 2014 11:45:19 -0800 Subject: [PATCH] Revert "continuations.tests: test case for #1187" This reverts commit 5dc7cce25353427f95ec463e09efb77d8cc9690c. --- core/continuations/continuations-tests.factor | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/core/continuations/continuations-tests.factor b/core/continuations/continuations-tests.factor index cb24f7886e..988be0dd88 100644 --- a/core/continuations/continuations-tests.factor +++ b/core/continuations/continuations-tests.factor @@ -1,6 +1,6 @@ USING: kernel math namespaces io tools.test sequences vectors continuations debugger parser memory arrays words -kernel.private accessors eval splitting ; +kernel.private accessors eval ; IN: continuations.tests : (callcc1-test) ( n obj -- n' obj ) @@ -33,11 +33,6 @@ IN: continuations.tests "Hello" = ] unit-test -! #1187 -[ ] [ - minor-gc [ split-slice ] ignore-errors minor-gc -] unit-test - "!!! The following error is part of the test" print [ ] [ [ 6 [ 12 [ "2 car" ] ] ] print-error ] unit-test @@ -57,7 +52,7 @@ IN: continuations.tests ! ! See how well callstack overflow is handled ! [ clear drop ] must-fail -! +! ! : callstack-overflow callstack-overflow f ; ! [ callstack-overflow ] must-fail