Fixed incorrect option comment in run_remote_tests.

Autotest will not split comma separated arguments. The correct calling method for multiple arguments is to separate them by spaces and quote the whole thing. E.g., instead of:

./run_remote_tests --args arg1,arg2

It should be:

./run_remote_tests --args "arg1 arg2"

See line 140 in src/third_party/autotest/files/server/autoserv_parser.py for
confirmation.

Change-Id: I88d65c0bd144942a856c2f95371d5a55b0a3a172

BUG=
TEST=No code changes. Ran --help and --args to verify nothing dumb happened and the correctness of comment.

Review URL: http://codereview.chromium.org/3772002
This commit is contained in:
Dale Curtis 2010-10-13 12:38:04 -07:00
parent f36d37fd67
commit 15e49571bf

View File

@ -14,7 +14,8 @@
get_default_board
DEFINE_string args "" "Command line arguments for test, separated with comma" a
DEFINE_string args "" \
"Command line arguments for test. Quoted and space separated if multiple." a
DEFINE_string board "$DEFAULT_BOARD" \
"The board for which you are building autotest"
DEFINE_string chroot "${DEFAULT_CHROOT_DIR}" "alternate chroot location" c