From 0d70d07cf1282e25709bd1ef159dddad06bed727 Mon Sep 17 00:00:00 2001 From: Slava Pestov <slava@slava-pestovs-macbook-pro.local> Date: Thu, 27 Aug 2009 20:27:35 -0500 Subject: [PATCH] tools.deploy.test: give PowerPC an extra 100kb --- basis/tools/deploy/test/test.factor | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/basis/tools/deploy/test/test.factor b/basis/tools/deploy/test/test.factor index 9a54e65f1a..28916033d4 100644 --- a/basis/tools/deploy/test/test.factor +++ b/basis/tools/deploy/test/test.factor @@ -11,7 +11,9 @@ IN: tools.deploy.test ] with-directory ; : small-enough? ( n -- ? ) - [ "test.image" temp-file file-info size>> ] [ cell 4 / * ] bi* <= ; + [ "test.image" temp-file file-info size>> ] + [ cell 4 / * cpu ppc? [ 100000 + ] when ] bi* + <= ; : run-temp-image ( -- ) os macosx?