Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
Android.mk | D | 03-May-2024 | 2.5 KiB | 85 | 43 | |
README.TXT | D | 03-May-2024 | 620 | 20 | 12 | |
test_cassert.cpp | D | 03-May-2024 | 1.7 KiB | 50 | 17 | |
test_cctype.cpp | D | 03-May-2024 | 2.6 KiB | 101 | 66 | |
test_climits.cpp | D | 03-May-2024 | 2.6 KiB | 89 | 39 | |
test_cmath.cpp | D | 03-May-2024 | 2 KiB | 76 | 38 | |
test_csetjmp.cpp | D | 03-May-2024 | 2 KiB | 66 | 29 | |
test_csignal.cpp | D | 03-May-2024 | 2 KiB | 69 | 33 | |
test_cstddef.cpp | D | 03-May-2024 | 3 KiB | 104 | 56 | |
test_cstdint.cpp | D | 03-May-2024 | 1.7 KiB | 46 | 14 | |
test_cstdio.cpp | D | 03-May-2024 | 3.6 KiB | 167 | 118 | |
test_cstdlib.cpp | D | 03-May-2024 | 2.7 KiB | 121 | 74 | |
test_cstring.cpp | D | 03-May-2024 | 2.2 KiB | 77 | 42 | |
test_ctime.cpp | D | 03-May-2024 | 2.9 KiB | 111 | 71 |
README.TXT
1This directory contains a set of tests for Android's Bionic Standard C++ library. 2 3You must define the BIONIC_TESTS environment variable to build these 4test programs. For example, do: 5 6 cd system/extras/tests/bionic/libstdc++ 7 mm BIONIC_TESTS=1 8 9Preferably, to build and run you can use this: 10 11 runtest_py libstdcpp 12 13All test programs should exit with a status code of 0 in case of success, and 1 14in case of failure. 15 16The directory layout is currently flat because there is one Bionic test. If you 17want to add GNU STDC++ or benchmark tests, look in tests/bionic/libc as an 18example how to structure your files. 19 20