Add quotes to prevent shell globbing in TESTING.asciidoc

This commit is contained in:
Lee Hinman 2016-08-09 09:02:27 -06:00
parent 6abcd42a05
commit 2f8e3db1e8
1 changed files with 2 additions and 2 deletions

View File

@ -285,14 +285,14 @@ REST tests use the following command:
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
gradle :distribution:integ-test-zip:integTest \ gradle :distribution:integ-test-zip:integTest \
-Dtests.class=org.elasticsearch.test.rest.*Yaml*IT -Dtests.class="org.elasticsearch.test.rest.*Yaml*IT"
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
A specific test case can be run with A specific test case can be run with
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
gradle :distribution:integ-test-zip:integTest \ gradle :distribution:integ-test-zip:integTest \
-Dtests.class=org.elasticsearch.test.rest.*Yaml*IT \ -Dtests.class="org.elasticsearch.test.rest.*Yaml*IT" \
-Dtests.method="test {p0=cat.shards/10_basic/Help}" -Dtests.method="test {p0=cat.shards/10_basic/Help}"
--------------------------------------------------------------------------- ---------------------------------------------------------------------------