Android: fix instrumentation step title.

Following https://chromiumcodereview.appspot.com/10832097
The step title shouldn't contain / as it confused buildbot.

BUG=139365
TEST=Multiple steps on the FYI android tester.


Review URL: https://chromiumcodereview.appspot.com/10827121

git-svn-id: http://src.chromium.org/svn/trunk/src/build@149507 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
bulach@chromium.org 2012-08-01 22:04:52 +00:00
Родитель 66d409799f
Коммит 0aaa239737
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -268,7 +268,8 @@ function bb_run_content_shell_test {
function bb_run_instrumentation_test {
local TEST_APK=${1}
local EXTRA_FLAGS=${2}
echo "@@@BUILD_STEP Android Instrumentation ${TEST_APK} ${EXTRA_FLAGS} "\
local APK_NAME=$(basename ${TEST_APK})
echo "@@@BUILD_STEP Android Instrumentation ${APK_NAME} ${EXTRA_FLAGS} "\
"on actual hardware@@@"
local INSTRUMENTATION_FLAGS="-vvv"
INSTRUMENTATION_FLAGS+=" --test-apk ${TEST_APK}"