• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

bionic/22-Nov-2023-182132

common/22-Nov-2023-735462

other/22-Nov-2023-631455

Android.mkD22-Nov-20232.5 KiB8342

MODULE_LICENSE_BSD_AND_GPLD22-Nov-20230

README.TXTD22-Nov-2023770 2517

run-test.shD22-Nov-20234.7 KiB186132

README.TXT

1This directory contains a set of tests for Android's Bionic 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/libc
7    mm BIONIC_TESTS=1
8
9All test programs, except those in the 'other' directory, should exit
10with a status code of 0 in case of success, and 1 in case of failure.
11
12The directory layout is simple:
13
14  common/
15    Contains tests that can be compiled either with Bionic or another
16    C library.
17
18  bionic/
19    Contains tests that can *only* be compiled against Bionic
20
21  other/
22    Other unrelated tests. These are not run by the test runner
23    program but will be installed to your device nevertheless.
24    Put benchmarks and various debug/info stuff there.
25