浏览代码

Minor cleanups.

Dawid Weiss 11 年之前
父节点
当前提交
d25c14a9e9
共有 1 个文件被更改,包括 9 次插入9 次删除
  1. 9 9
      TESTING.asciidoc

+ 9 - 9
TESTING.asciidoc

@@ -115,20 +115,19 @@ mvn test -Dtests.slow=[true]       - slow tests (@Slow)
 
 === Load balancing and caches.
 
-Run sequentially (one slave JVM). By default, the tests run with 3
-concurrent JVMs.
+By default, the tests run sequentially on a single forked JVM. 
 
-----------------------------
-mvn test -Dtests.jvms=1 test
-----------------------------
-
-Run with more slave JVMs than the default. Don't count hypercores for
-CPU-intense tests. Make sure there is enough RAM to handle child JVMs.
+To run with more forked JVMs than the default use:
 
 ----------------------------
 mvn test -Dtests.jvms=8 test
 ----------------------------
 
+Don't count hypercores for CPU-intense tests and leave some slack
+for JVM-internal threads (like the garbage collector). Make sure there is 
+enough RAM to handle child JVMs.
+
+
 === Miscellaneous.
 
 Run all tests without stopping on errors (inspect log files).
@@ -143,7 +142,8 @@ Run more verbose output (slave JVM parameters, etc.).
 mvn test -verbose test
 ----------------------
 
-Change the default suite timeout to 5 seconds.
+Change the default suite timeout to 5 seconds for all
+tests (note the exclamation mark).
 
 ---------------------------------------
 mvn test -Dtests.timeoutSuite=5000! ...