Jelajahi Sumber

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

Andy Li 6 tahun lalu
induk
melakukan
2d5c322617
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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; 
 	}