| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| Android.bp | D | 03-May-2024 | 1.5 KiB | 60 | 52 | |
| AndroidTest.xml | D | 03-May-2024 | 1.5 KiB | 32 | 16 | |
| ESDSTest.cpp | D | 03-May-2024 | 8 KiB | 210 | 164 | |
| ESDSTestEnvironment.h | D | 03-May-2024 | 1.9 KiB | 73 | 42 | |
| README.md | D | 03-May-2024 | 1.1 KiB | 41 | 31 |
README.md
1## Media Testing ## 2--- 3#### ESDS Unit Test : 4The ESDS Unit Test Suite validates the ESDS class available in libstagefright. 5 6Run the following steps to build the test suite: 7``` 8m ESDSTest 9``` 10 11The 32-bit binaries will be created in the following path : ${OUT}/data/nativetest/ 12 13The 64-bit binaries will be created in the following path : ${OUT}/data/nativetest64/ 14 15To test 64-bit binary push binaries from nativetest64. 16``` 17adb push ${OUT}/data/nativetest64/ESDSTest/ESDSTest /data/local/tmp/ 18``` 19 20To test 32-bit binary push binaries from nativetest. 21``` 22adb push ${OUT}/data/nativetest/ESDSTest/ESDSTest /data/local/tmp/ 23``` 24 25The resource file for the tests is taken from [here](https://storage.googleapis.com/android_media/frameworks/av/media/libstagefright/tests/ESDS/ESDSTestRes-1.0.zip) 26Download, unzip and push these files into device for testing. 27 28``` 29adb push ESDSTestRes /data/local/tmp/ 30``` 31 32usage: ESDSTest -P \<path_to_folder\> 33``` 34adb shell /data/local/tmp/ESDSTest -P /data/local/tmp/ESDSTestRes/ 35``` 36Alternatively, the test can also be run using atest command. 37 38``` 39atest ESDSTest -- --enable-module-dynamic-download=true 40``` 41