| Index: chromeos-base/autotest/autotest-0.0.1.ebuild
|
| diff --git a/chromeos-base/autotest/autotest-0.0.1.ebuild b/chromeos-base/autotest/autotest-0.0.1.ebuild
|
| index 004b5086606a10c8001f23f650885f94c24718bf..89f160ef66b9057931289cedac96be441d543c21 100644
|
| --- a/chromeos-base/autotest/autotest-0.0.1.ebuild
|
| +++ b/chromeos-base/autotest/autotest-0.0.1.ebuild
|
| @@ -127,10 +127,15 @@ src_test() {
|
|
|
| setup_cross_toolchain
|
|
|
| + local args=()
|
| + if [[ -n ${AUTOSERV_TEST_ARGS} ]] ; then
|
| + args=("-a" "${AUTOSERV_TEST_ARGS}")
|
| + fi
|
| +
|
| local timestamp=$(date +%Y-%m-%d-%H.%M.%S)
|
| # Do not use sudo, it'll unset all your environment
|
| LOGNAME=${SUDO_USER} ./server/autoserv -r /tmp/results.${timestamp} \
|
| - ${AUTOSERV_ARGS}
|
| + ${AUTOSERV_ARGS} "${args[@]}"
|
| teardown_ssh
|
| }
|
|
|
|
|