Home
last modified time | relevance | path

Searched refs:tests (Results 1 – 25 of 2886) sorted by relevance

12345678910>>...116

/llvm-project/libc/test/src/string/
H A DCMakeLists.txt1 add_custom_target(libc-string-tests)
14 libc-string-tests
24 libc-string-tests
34 libc-string-tests
44 libc-string-tests
54 libc-string-tests
64 libc-string-tests
74 libc-string-tests
84 libc-string-tests
94 libc-string-tests
[all...]
/llvm-project/libc/test/src/stdlib/
H A DCMakeLists.txt1 add_custom_target(libc-stdlib-tests)
6 libc-stdlib-tests
27 libc-stdlib-tests
38 libc-stdlib-tests
49 libc-stdlib-tests
60 libc-stdlib-tests
72 libc-stdlib-tests
94 libc-stdlib-tests
106 libc-stdlib-tests
118 libc-stdlib-tests
[all...]
/llvm-project/libc/test/src/math/smoke/
H A DCMakeLists.txt1 add_custom_target(libc-math-smoke-tests)
2 add_dependencies(libc-math-unittests libc-math-smoke-tests)
7 libc-math-smoke-tests
18 libc-math-smoke-tests
29 libc-math-smoke-tests
42 libc-math-smoke-tests
54 libc-math-smoke-tests
67 libc-math-smoke-tests
79 libc-math-smoke-tests
92 libc-math-smoke-tests
[all...]
/llvm-project/libc/test/src/ctype/
H A DCMakeLists.txt1 add_custom_target(libc-ctype-tests)
6 libc-ctype-tests
16 libc-ctype-tests
26 libc-ctype-tests
36 libc-ctype-tests
46 libc-ctype-tests
56 libc-ctype-tests
66 libc-ctype-tests
76 libc-ctype-tests
86 libc-ctype-tests
[all …]
/llvm-project/clang-tools-extra/unittests/clang-tidy/
H A DIncludeInserterTest.cpp22 // clang-tidy tests work.
163 return {"clang_tidy/tests/generated_file.proto.h"}; in headersToInclude()
173 {"clang_tidy/tests/" in runCheckOnCode()
181 {"clang_tidy/tests/" in runCheckOnCode()
191 {"clang_tidy/tests/" in runCheckOnCode()
205 #include "clang_tidy/tests/insert_includes_test_header.h" in TEST()
216 #include "clang_tidy/tests/insert_includes_test_header.h" in TEST()
230 PreCode, "clang_tidy/tests/insert_includes_test_input2.cc")); in TEST()
235 #include "clang_tidy/tests/insert_includes_test_header.h" in TEST()
246 #include "clang_tidy/tests/insert_includes_test_heade in TEST()
[all...]
/llvm-project/libc/test/src/__support/CPP/
H A DCMakeLists.txt1 add_custom_target(libc-cpp-utils-tests)
6 libc-cpp-utils-tests
16 libc-cpp-utils-tests
26 libc-cpp-utils-tests
38 libc-cpp-utils-tests
48 libc-cpp-utils-tests
58 libc-cpp-utils-tests
68 libc-cpp-utils-tests
80 libc-cpp-utils-tests
90 libc-cpp-utils-tests
[all …]
/llvm-project/llvm/utils/lit/
H A DCMakeLists.txt2 # until the tests are run as we need to copy it into
3 # a copy of the tests folder
5 "${CMAKE_CURRENT_SOURCE_DIR}/tests/lit.site.cfg.in"
11 # To work around this the tests and the configuration file are copied into the
12 # build directory just before running them. The tests are not copied over at
14 # tests being run.
16 COMMAND ${CMAKE_COMMAND} -E remove_directory "${CMAKE_CURRENT_BINARY_DIR}/tests"
17 …_COMMAND} -E copy_directory "${CMAKE_CURRENT_SOURCE_DIR}/tests" "${CMAKE_CURRENT_BINARY_DIR}/tests"
18 …AKE_COMMAND} -E copy "${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg" "${CMAKE_CURRENT_BINARY_DIR}/tests"
19 COMMENT "Preparing lit tests"
[all …]
/llvm-project/cross-project-tests/
H A DCMakeLists.txt1 # Cross project tests, for tests that require access to multiple projects across
3 # The subset inside debuginfo-tests invoke clang to generate programs with
11 debuginfo-tests/llvm-prettyprinters/gdb/llvm-support.cpp
35 debuginfo-tests/llvm-prettyprinters/gdb/mlir-support.cpp
46 # llgdb-tests/asan.c and other asan* files.
50 # llgdb-tests/safestack.c
55 # Many dexter tests depend on lldb.
71 add_lit_testsuite(check-cross-project "Running cross-project tests"
77 add_lit_testsuite(check-debuginfo "Running debuginfo tests"
78 ${CMAKE_CURRENT_BINARY_DIR}/debuginfo-tests
[all …]
/llvm-project/llvm/utils/lit/lit/
H A Dmain.py51 sys.stderr.write("error: did not discover any tests for provided path(s)\n")
93 "error: filter did not match any tests "
105 # When running multiple shards, don't include skipped tests in the xunit
112 "warning: shard does not contain any tests. "
141 # Only report tests that failed.
148 sys.stderr.write("\n%d error(s) in tests\n" % lit_config.numErrors)
152 sys.stderr.write("\n%d warning(s) in tests\n" % lit_config.numWarnings)
174 def print_discovered(tests, show_suites, show_tests):
175 tests.sort(key=lit.reports.by_suite_and_test_path)
178 tests_by_suite = itertools.groupby(tests, lambd
169 print_discovered(tests, show_suites, show_tests) global() argument
193 determine_order(tests, order) global() argument
210 filter_by_shard(tests, run, shards, lit_config) global() argument
246 run_tests(tests, lit_config, opts, discovered_tests) global() argument
304 print_histogram(tests) global() argument
312 print_results(tests, elapsed, opts) global() argument
328 print_group(tests, code, shown_codes) global() argument
[all...]
H A Dreports.py16 # key to avoid mixing tests of different suites.
26 def write_results(self, tests, elapsed):
38 self._write_results_to_file(tests, elapsed, report_file)
41 def _write_results_to_file(self, tests, elapsed, file):
47 def _write_results_to_file(self, tests, elapsed, file):
49 tests = [t for t in tests if t.result.code not in unexecuted_codes]
58 # Encode the tests.
59 data["tests"] = tests_data = []
60 for test in tests
21 write_results(self, tests, elapsed) global() argument
96 write_results(self, tests, elapsed) global() argument
107 _write_testsuite(self, file, suite, tests) global() argument
205 write_results(self, tests, elapsed) global() argument
254 write_results(self, tests, elapsed) global() argument
[all...]
/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/
H A Dsimplified-template-names.s4 # Checking the LLVM side of cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_tem…
24 ….loc 0 142 0 # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
34 ….loc 0 142 44 prologue_end # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
48 ….loc 0 182 0 # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
58 ….loc 0 184 8 prologue_end # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
61 ….loc 0 185 3 # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
63 ….loc 0 186 3 # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
65 ….loc 0 187 3 # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
67 ….loc 0 188 3 # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
69 ….loc 0 189 3 # cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/si…
[all …]
/llvm-project/libc/test/src/__support/
H A DCMakeLists.txt1 add_custom_target(libc-support-tests)
7 libc-support-tests
21 libc-support-tests
34 libc-support-tests
46 libc-support-tests
64 libc-support-tests
79 libc-support-tests
89 libc-support-tests
99 libc-support-tests
111 libc-support-tests
[all...]
/llvm-project/libc/test/integration/startup/linux/
H A DCMakeLists.txt2 message("Skipping startup integration tests for target architecture ${LIBC_TARGET_ARCHITECTURE}.")
6 add_custom_target(libc-startup-tests)
7 add_dependencies(libc-integration-tests libc-startup-tests)
11 SUITE libc-startup-tests
23 SUITE libc-startup-tests
30 SUITE libc-startup-tests
37 SUITE libc-startup-tests
48 SUITE libc-startup-tests
/llvm-project/mlir/test/
H A DCMakeLists.txt20 "If set, arch-specific integration tests are run with Intel SDE.")
22 "If set, arch-specific Arm integration tests are run with an emulator.")
24 "If arch-specific Arm integration tests run emulated, pass these as parameters to the emulator.")
26 "If arch-specific Arm integration tests run emulated, use this Arm native mlir-runner.")
28 "If arch-specific Arm integration tests run emulated, use this Arm native lli.")
30 "If arch-specific Arm integration tests run emulated, find Arm native utility libraries in this directory.")
32 "The GPU compilation format used by the tests.")
34 "Path to a shared library containing Arm SME ABI routines, required for Arm SME integration tests.")
35 option(MLIR_RUN_AMX_TESTS "Run AMX tests.")
36 option(MLIR_RUN_X86VECTOR_TESTS "Run X86Vector tests
[all...]
/llvm-project/libc/docs/gpu/
H A Dtesting.rst9 Running GPU tests with high parallelism is likely to cause spurious failures,
20 The LLVM C library supports different kinds of :ref:`tests <build_and_test>`
23 tests. Currently the GPU supports two kinds of tests.
25 #. **Hermetic tests** - These are unit tests built with a test suite similar to
27 tests except that the entire environment is self-hosted. This allows us to
31 #. **Integration tests** - These are lightweight tests that simply call a
96 Running tests
102 options <gpu_cmake_options>`. Once built, they can be run like any other tests.
109 #. All tests - You can run all supported tests with the command:
115 #. Hermetic tests - You can run hermetic with tests the command:
[all …]
/llvm-project/libc/test/integration/startup/gpu/
H A DCMakeLists.txt1 add_custom_target(libc-startup-tests)
2 add_dependencies(libc-integration-tests libc-startup-tests)
6 SUITE libc-startup-tests
18 SUITE libc-startup-tests
35 SUITE libc-startup-tests
42 SUITE libc-startup-tests
49 SUITE libc-startup-tests
60 SUITE libc-startup-tests
71 SUITE libc-startup-tests
[all...]
/llvm-project/libc/docs/dev/
H A Dfuzzing.rst4 Fuzz tests are used to ensure quality and security of LLVM-libc implementations.
5 All fuzz tests live under the directory named ``fuzzing``. Within this
8 ``libc-fuzzer`` builds all of the enabled fuzz tests (but does not run them).
10 Types of fuzz tests
13 As of this writing, there are two different kinds of fuzz tests. One kind are
14 the traditional fuzz tests which test one function at a time and only that
15 particular function. The other kind of tests are what we call as the
16 differential fuzz tests. These tests compare the behavior of LLVM libc
/llvm-project/llvm/utils/lit/utils/
H A Dcheck-coverage32 rm -f tests/.coverage
33 find tests -name .coverage.\* -exec rm {} \;
39 find tests/* -name .coverage.\* -exec mv {} tests \;
42 (cd tests && python -m coverage combine)
45 (cd tests && python -m coverage report)
49 (cd tests && python -m coverage html)
/llvm-project/libc/test/
H A DCMakeLists.txt2 add_custom_target(libc-unit-tests)
3 add_custom_target(libc-hermetic-tests)
4 add_dependencies(check-libc libc-unit-tests libc-hermetic-tests)
7 add_custom_target(libc-long-running-tests)
13 message(WARNING "Cannot build libc GPU tests, missing loader.")
16 message(WARNING "Cannot build libc GPU tests, missing target architecture.")
32 # Integration tests are currently only available for linux and the GPU.
/llvm-project/cross-project-tests/debuginfo-tests/dexter/
H A DREADME.md32 <compiler-executable> tests/nostdlib/fibonacci/test.cpp
36 The following commands build fibonacci.cpp from the tests/nostdlib directory and run it in LLDB, re…
38 clang -O0 -g tests/nostdlib/fibonacci.cpp -o tests/nostdlib/fibonacci/test
39 …dexter.py test --binary tests/nostdlib/fibonacci/test --debugger lldb -- tests/nostdlib/fibonacci/…
42 clang -O2 -g tests/nostdlib/fibonacci/test.cpp -o tests/nostdlib/fibonacci/test
43 …dexter.py test --binary tests/nostdlib/fibonacci/test --debugger lldb -- tests/nostdlib/fibonacci/…
48 The sample test case (tests/nostdlib/fibonacci) looks like this:
112 Running the command below launches the tests/nostdlib/fibonacci test case in DExTer, using LLDB as …
114 …clang-cl_vs2015 --debugger vs2017 --cflags="/Ox /Zi" --ldflags="/Zi" -v -- tests/nostdlib/fibonacci
121 [1, "main", "c:\\dexter\\tests\\nostdlib\\fibonacci\\test.cpp", 23, 1, "BREAKPOINT", "FUNC", {}]
[all …]
/llvm-project/compiler-rt/test/builtins/Unit/
H A Dudivmoddi4_test.c24 du_int tests[][4] = variable
20622 const unsigned N = sizeof(tests) / sizeof(tests[0]); in main()
20625 if (test__udivmoddi4(tests[i][0], tests[i][1], tests[i][2], tests[i][3])) in main()
H A Dumodsi3_test.c20 su_int tests[][4] = variable
158 const unsigned N = sizeof(tests) / sizeof(tests[0]); in main()
161 if (test__umodsi3(tests[i][0], tests[i][1], tests[i][2])) in main()
H A Dudivsi3_test.c20 su_int tests[][4] = variable
158 const unsigned N = sizeof(tests) / sizeof(tests[0]); in main()
161 if (test__udivsi3(tests[i][0], tests[i][1], tests[i][2])) in main()
/llvm-project/compiler-rt/test/builtins/Unit/arm/
H A Daeabi_uldivmod_test.c37 du_int tests[][4] = variable
20637 const unsigned N = sizeof(tests) / sizeof(tests[0]); in main()
20640 if (test_aeabi_uldivmod(tests[i][0], tests[i][1], tests[i][2], tests[i][3])) in main()
/llvm-project/polly/lib/External/isl/imath/tests/gmp-compat-test/
H A DREADME4 compatibility layer of imath. The tests cases are randomly generated
8 You should not see any failures when running these tests.
12 These tests use the python ffi to run the imath and gmp functions. To
13 run these tests you will need the following items
22 All the tests cases will be generated and run automatically by the
26 Use the following command to generate and run the tests
28 $ make TESTS=random.tests
31 randomized unit tests. By default the unit tests are output to the
32 random.tests file. The tests can be run by hand using the following
35 $ ./runtest random.tests
[all …]

12345678910>>...116