]> gitweb.factorcode.org Git - factor.git/commitdiff
Lower tcp-echo0 test so we don't crash
authorDoug Coleman <doug.coleman@gmail.com>
Wed, 19 Oct 2011 08:17:08 +0000 (01:17 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Wed, 19 Oct 2011 08:17:08 +0000 (01:17 -0700)
extra/benchmark/tcp-echo0/tcp-echo0.factor

index 76860c66676a0457fab7132c33bfd15b3eb22012..1f2fdc2af59e54efa9559ab748df304bd05518c0 100644 (file)
@@ -6,7 +6,7 @@ locals formatting ;
 IN: benchmark.tcp-echo0
 
 ! Max size here is 26 2^ 1 - because array-capacity limits on 32bit platforms
-CONSTANT: test-size0 $[ 25 2^ 1 - ]
+CONSTANT: test-size0 $[ 23 2^ 1 - ]
 
 MEMO: test-bytes ( n -- byte-array ) iota >byte-array ;