Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c737dc8 authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Add -t to run-ravenwood-tests.sh

To print log to console

Flag: EXEMPT host test change only
Bug: 292141694
Test: $ANDROID_BUILD_TOP/frameworks/base/ravenwood/scripts/run-ravenwood-tests.sh
Change-Id: I8c0a007165571e7d55eba737396da71508e1553a
parent 591470a1
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ include_re=""
exclude_re=""
smoke_exclude_re=""
dry_run=""
while getopts "sx:f:d" opt; do
while getopts "sx:f:dt" opt; do
case "$opt" in
    s)
        # Remove slow tests.
@@ -51,6 +51,9 @@ case "$opt" in
        # Dry run
        dry_run="echo"
        ;;
    t)
        export RAVENWOOD_LOG_OUT=$(tty)
        ;;
    '?')
        exit 1
        ;;