diff --git a/doc/testing.html b/doc/testing.html index b9838735e4f6e..62f3c11b7358d 100644 --- a/doc/testing.html +++ b/doc/testing.html @@ -6,13 +6,19 @@ Testing the JDK -
@@ -369,8 +372,8 @@

Test suite control

concurrency level to 1 and the timeout factor to 8. This is equivalent to setting JTREG_JOBS=1 JTREG_TIMEOUT_FACTOR=8, but using the keyword format means that the JTREG variable is parsed -and verified for correctness, so JTREG="TMIEOUT_FACTOR=8" -would give an error, while JTREG_TMIEOUT_FACTOR=8 would +and verified for correctness, so JTREG="TIMEOUT_FACTOR=8" +would give an error, while JTREG_TIMEOUT_FACTOR=8 would just pass unnoticed.

To separate multiple keyword=value pairs, use ; (semicolon). Since the shell normally eats ;, the diff --git a/doc/testing.md b/doc/testing.md index 0144610a5bf92..a45f1502ec16b 100644 --- a/doc/testing.md +++ b/doc/testing.md @@ -289,7 +289,7 @@ set. So, for instance, `JTREG="JOBS=1;TIMEOUT_FACTOR=8"` will set the JTReg concurrency level to 1 and the timeout factor to 8. This is equivalent to setting `JTREG_JOBS=1 JTREG_TIMEOUT_FACTOR=8`, but using the keyword format means that the `JTREG` variable is parsed and verified for correctness, so -`JTREG="TMIEOUT_FACTOR=8"` would give an error, while `JTREG_TMIEOUT_FACTOR=8` +`JTREG="TIMEOUT_FACTOR=8"` would give an error, while `JTREG_TIMEOUT_FACTOR=8` would just pass unnoticed. To separate multiple keyword=value pairs, use `;` (semicolon). Since the shell