Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
golden-output/ | H | 25-Apr-2025 | - | 12,404 | 11,972 | |
golden-output.RELEASE_TARGET_JAVA_21/ | H | 25-Apr-2025 | - | 12,323 | 11,900 | |
tiny-framework/src/com/ | H | 25-Apr-2025 | - | 1,629 | 583 | |
tiny-test/src/com/android/hoststubgen/test/tinyframework/ | H | 25-Apr-2025 | - | 500 | 338 | |
Android.bp | H A D | 25-Apr-2025 | 5.1 KiB | 168 | 153 | |
AndroidTest-host.xml | H A D | 25-Apr-2025 | 1.5 KiB | 30 | 12 | |
README.md | H A D | 25-Apr-2025 | 663 | 21 | 14 | |
annotation-allowed-classes-tiny-framework.txt | H A D | 25-Apr-2025 | 856 | 29 | 19 | |
diff-and-update-golden.sh | H A D | 25-Apr-2025 | 3.1 KiB | 134 | 89 | |
policy-override-tiny-framework.txt | H A D | 25-Apr-2025 | 3.5 KiB | 76 | 64 | |
run-test-manually.sh | H A D | 25-Apr-2025 | 3.7 KiB | 131 | 77 | |
tiny-framework-dump-test.py | H A D | 25-Apr-2025 | 2.4 KiB | 86 | 44 |
README.md
1# HostStubGen: tiny-framework test 2 3This directory contains a small classes that "simulates" framework.jar, and tests against it. 4 5This test is agnostic to Android, and it doesn't use any android framework code or knowledge. 6 7## How to run 8 9- With `atest`. This is the proper way to run it, but `atest` has known problems that may 10 affect the result. If you see weird problems, try the next `run-ravenwood-test` command. 11 12``` 13$ atest hoststubgen-test-tiny-test 14``` 15 16- `run-test-manually.sh` also run the test, but it builds the stub/impl jars and the test without 17 using the build system. This is useful for debugging the tool. 18 19``` 20$ ./run-test-manually.sh 21```