• Home
Name Date Size #Lines LOC

..--

Android.bpD03-May-20242.6 KiB10296

AndroidTest.xmlD03-May-20241 KiB248

BufferpoolUnitTest.cppD03-May-202419.6 KiB542405

OWNERSD03-May-2024112 97

README.mdD03-May-2024837 3426

allocator.cppD03-May-20246.6 KiB252198

allocator.hD03-May-20242.1 KiB6934

cond.cppD03-May-20248 KiB270211

multi.cppD03-May-20247 KiB236182

single.cppD03-May-20245.7 KiB184131

README.md

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