]> gitweb.factorcode.org Git - factor.git/commitdiff
tools.deploy.test: cut Windows some slack
authorSlava Pestov <slava@factorcode.org>
Sat, 12 Sep 2009 18:24:45 +0000 (13:24 -0500)
committerSlava Pestov <slava@factorcode.org>
Sat, 12 Sep 2009 18:24:45 +0000 (13:24 -0500)
basis/tools/deploy/test/test.factor [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 2891603..6a6f9cf
@@ -12,7 +12,11 @@ IN: tools.deploy.test
 
 : small-enough? ( n -- ? )
     [ "test.image" temp-file file-info size>> ]
-    [ cell 4 / * cpu ppc? [ 100000 + ] when ] bi*
+    [
+        cell 4 / *
+        cpu ppc? [ 100000 + ] when
+        os windows? [ 150000 + ] when
+    ] bi*
     <= ;
 
 : run-temp-image ( -- )