Lines Matching full:libcxx
38 $ <build>/bin/llvm-lit -sv libcxx/test/std/re # Run all of the std::regex tests
39 …$ <build>/bin/llvm-lit -sv libcxx/test/std/depr/depr.c.headers/stdlib_h.pass.cpp # Run a single te…
40 …$ <build>/bin/llvm-lit -sv libcxx/test/std/atomics libcxx/test/std/threads # Test std::thread and …
49 paths of all tests. For example, to run all the libcxx tests you can do
50 ``<build>/bin/llvm-lit -sv <build>/runtimes/runtimes-bins/libcxx/test``.
56 change, including to the headers. We recommend using the provided ``libcxx/utils/libcxx-lit``
63 …$ libcxx/utils/libcxx-lit <build> -sv libcxx/test/std/re # Build testing dependencies and run all …
73 …$ libcxx/utils/libcxx-lit <build> -sv libcxx/test/std/containers # Run the tests with the newest -…
74 …$ libcxx/utils/libcxx-lit <build> -sv libcxx/test/std/containers --param std=c++03 # Run the tests…
76 Other parameters are supported by the test suite. Those are defined in ``libcxx/utils/libcxx/test/p…
93 ``libcxx/test/configs/``, and pointing ``llvm-lit`` (which is a wrapper around
96 file is always loaded instead of ``libcxx/test/lit.cfg.py``. If you want to use a
105 $ libcxx/utils/libcxx-lit <build> -sv libcxx/test # will use your custom config file
119 all these configurations is located in ``libcxx/utils/ci/run-buildbot``. Most of our
121 image is located in ``libcxx/utils/ci/Dockerfile``. If you are looking to reproduce the
123 matches our CI images by running ``libcxx/utils/ci/run-buildbot-container``, and then run
163 - ``libcxx/test/support`` This directory contains several helper headers with
170 - ``libcxx/test/std`` This directory contains the tests that validate the library under
176 - ``libcxx/test/libcxx`` This directory contains the tests that validate libc++
180 ``libcxx/test/libcxx``. The structure of this directories follows the
181 structure of ``libcxx/test/std``.
220 libcxx/test/support/assert_macros.h
314 libcxx/test/support/concat_macros.h
337 ``libcxx/utils/libcxx/test/format.py`` has documentation about writing test. It
366 This will build all of the benchmarks under ``<libcxx-src>/benchmarks`` to be
368 ``build/projects/libcxx/benchmarks``.
373 The compiled benchmarks are named ``<test>.libcxx.out`` if they test libc++ and
391 $ cd build/projects/libcxx/benchmarks
392 $ ./algorithms.libcxx.out # Runs all the benchmarks
393 $ ./algorithms.libcxx.out --benchmark_filter=BM_Sort.* # Only runs the sort benchmarks