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

Commit 62e28dc5 authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Update run-ravenwood-tests.sh

- Filters are now case-insensitive
- Add CarSystemUIRavenTests to the slow list

Flag: EXEMPT host test change only
Bug: 292141694
Test: $ANDROID_BUILD_TOP/frameworks/base/ravenwood/scripts/run-ravenwood-tests.sh -s -x ^cts

Change-Id: I3665011e60406bcd2f1188f45a04a15515c3744d
parent 13763f18
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@


# Regex to identify slow tests, in PCRE
SLOW_TEST_RE='^(SystemUiRavenTests|CtsIcuTestCasesRavenwood)$'
SLOW_TEST_RE='^(SystemUiRavenTests|CtsIcuTestCasesRavenwood|CarSystemUIRavenTests)$'

smoke=0
include_re=""
@@ -67,7 +67,7 @@ filter() {
    if [[ "$re" == "" ]] ; then
        cat # No filtering
    else
        grep $grep_arg -P "$re"
        grep $grep_arg -iP "$re"
    fi
}