diff options
author | 2024-11-05 11:55:24 -0800 | |
---|---|---|
committer | 2024-11-05 11:56:16 -0800 | |
commit | 62e28dc52b38b9b6a45d30896f15dfec5631c2e0 (patch) | |
tree | 04693b5b01cc0be3bdb2908e5a56b6e28ba2d175 | |
parent | 13763f1835a8a5d6829ff73571858d377abcbed2 (diff) |
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
-rwxr-xr-x | ravenwood/scripts/run-ravenwood-tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ravenwood/scripts/run-ravenwood-tests.sh b/ravenwood/scripts/run-ravenwood-tests.sh index 672c685aa6d7..1910100a7f5d 100755 --- a/ravenwood/scripts/run-ravenwood-tests.sh +++ b/ravenwood/scripts/run-ravenwood-tests.sh @@ -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 } |