瀏覽代碼

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

Andy Li 6 年之前
父節點
當前提交
2d5c322617
共有 1 個文件被更改,包括 1 次插入1 次删除
  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; 
 	}