Browse Source

Let's make the Threads test more manageable for my old comp.

Andy Li 6 năm trước cách đây
mục cha
commit
2d5c322617
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      other/tests/Threads.hx

+ 1 - 1
other/tests/Threads.hx

@@ -7,7 +7,7 @@ class Threads {
 	}
 
 	static function run(i,k) {
-		for( i in 0...Math.ceil(10000000/k) )
+		for( i in 0...Math.ceil(1000000/k) )
 			new hl.Bytes(1);
 		if( i>=0 ) WAIT[i] = false; 
 	}