1## Media Testing ## 2--- 3#### Bufferpool : 4The Bufferpool Test Suite validates bufferpool library in android. 5 6Run the following steps to build the test suite: 7``` 8m BufferpoolUnitTest 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/BufferpoolUnitTest/BufferpoolUnitTest /data/local/tmp/ 18``` 19 20To test 32-bit binary push binaries from nativetest. 21``` 22adb push ${OUT}/data/nativetest/BufferpoolUnitTest/BufferpoolUnitTest /data/local/tmp/ 23``` 24 25usage: BufferpoolUnitTest 26``` 27adb shell /data/local/tmp/BufferpoolUnitTest 28``` 29Alternatively, the test can also be run using atest command. 30 31``` 32atest BufferpoolUnitTest 33``` 34