diff options
author | 2025-02-21 14:13:40 -0800 | |
---|---|---|
committer | 2025-02-24 12:54:47 -0800 | |
commit | c8dac37e3e93fc73df332e1723888344655fe413 (patch) | |
tree | 06185ec61e481981f9921a4ad3710246f0929e5a /ravenwood/scripts/add-annotations.sh | |
parent | ca8ecbebc7e95f3dfec071fc68f43f0d388f7b7c (diff) |
Multiple improvements
- Sysprops allowlist now fully moved to the text file.
- Always enable the test timeout w/ improved stack traces
- Add a method to "run on main thread"
- Always enable the uncaught exception handler.
- Tolerate assertion failures on the main looper. (rather than letting
it crash the thread)
- Also some other minor changes needed in my main work.
Flag: EXEMPT host test change only
Bug: 292141694
Test: $ANDROID_BUILD_TOP/frameworks/base/ravenwood/scripts/run-ravenwood-tests.sh
Change-Id: I47b060021ce46b6e9fbe4aca63835745311a4b06
Diffstat (limited to 'ravenwood/scripts/add-annotations.sh')
-rwxr-xr-x | ravenwood/scripts/add-annotations.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ravenwood/scripts/add-annotations.sh b/ravenwood/scripts/add-annotations.sh index 3e86037d7c7b..8c394f51d8c4 100755 --- a/ravenwood/scripts/add-annotations.sh +++ b/ravenwood/scripts/add-annotations.sh @@ -35,7 +35,7 @@ set -e # We add this line to each methods found. # Note, if we used a single @, that'd be handled as an at file. Use # the double-at instead. -annotation="@@android.platform.test.annotations.DisabledOnRavenwood" +annotation="@@android.platform.test.annotations.DisabledOnRavenwood(reason = \"bulk-disabled by script\")" while getopts "t:" opt; do case "$opt" in t) |