• Home
Name
Date
Size
#Lines
LOC

..--

Android.mkD03-May-20242.5 KiB8543

README.TXTD03-May-2024620 2012

test_cassert.cppD03-May-20241.7 KiB5017

test_cctype.cppD03-May-20242.6 KiB10166

test_climits.cppD03-May-20242.6 KiB8939

test_cmath.cppD03-May-20242 KiB7638

test_csetjmp.cppD03-May-20242 KiB6629

test_csignal.cppD03-May-20242 KiB6933

test_cstddef.cppD03-May-20243 KiB10456

test_cstdint.cppD03-May-20241.7 KiB4614

test_cstdio.cppD03-May-20243.6 KiB167118

test_cstdlib.cppD03-May-20242.7 KiB12174

test_cstring.cppD03-May-20242.2 KiB7742

test_ctime.cppD03-May-20242.9 KiB11171

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