Lines Matching refs:tests
4 This directory contains integration tests for debug information in libbcc.
6 The tests come in two flavours: host and target. Host tests are run on the
8 tests run on a live Android system (emulator or device.)
10 Host tests use clang to build bytecode (bc) files, which are then executed
16 Target tests are similar, but instead of using clang, they use ant and
19 The output is verified in the same way as host side tests, and the format
20 of the tests is the same.
22 *** If you are running target-side tests, you must disable parallel
28 To run the tests, you must have built the android source tree and have
52 To execute all the tests from this directory, use the llvm-lit tool:
53 $ ./llvm-lit host-tests
54 $ ./llvm-lit target-tests -j 1
57 -j controls the number of tests to run in parallel
60 Adding new tests
62 To add new tests, just add a .c, .cpp, or .rs file to a test directory with
63 similar RUN/DEBUGGER/CHECK directives in comments as the existing tests.