diff options
author | 2020-10-28 10:57:41 +0000 | |
---|---|---|
committer | 2020-10-28 13:10:11 +0000 | |
commit | 1f3612f93759823d630e117be5216f694e0702e9 (patch) | |
tree | 64594f8ad80779fcd7b71fc441b8876cc49259a0 | |
parent | 4955036617ff4940bd35fa8ce63f0728c1042902 (diff) |
Extend temporary filtering pattern for ICU issue
Branches using ICU built from sources (rather than prebuilts) now have
a newline at the end of each ICU log entry.
Bug: 171770326
Bug: 171833701
Test: [master-art] art/test/run-test --host 001-HelloWorld
Test: [sc-release] art/test/run-test --host 001-HelloWorld
Change-Id: Ia84db0b84269e43d73d55e3240314c00057b77fb
-rwxr-xr-x | test/etc/run-test-jar | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/etc/run-test-jar b/test/etc/run-test-jar index b23a5724b2..865241c7ff 100755 --- a/test/etc/run-test-jar +++ b/test/etc/run-test-jar @@ -1403,7 +1403,10 @@ else # This temporary host only path is for ICU lazy initialization output (b/171770326). # We are attempting to remove the ICU log entries that now happens lazily and go to # stderr on host. - $cmdline "$@" 2>&1 | sed -e 's/No timezone override.*icudt6[6-7]l.dat//' + $cmdline "$@" 2>&1 | sed -e '/^No timezone override.*icu_tzdata.dat$/d' \ + -e '/^Time zone APEX ICU file found:.*icu_tzdata.dat$/d' \ + -e '/^I18n APEX ICU file found: .*icudt6[6-7]l.dat$/d' \ + -e 's/No timezone override.*icudt6[6-7]l.dat//' exit_value=${PIPESTATUS[0]} else $cmdline "$@" 2>&1 & pid=$! |