| Age | Commit message (Collapse) | Author |
|
I suspect the reason is that we use `add_fp_unittest` in exhaustive
testing, so the suffix `__unit__` is necessary.
|
|
The .yaml files should live next to the corresponding .h.def
files in libc/include/, rather than next to the implementation of
the tool in libc/utils/hdrgen/. As with the .h.def files, there
is no need for a yaml/ subdirectory under include/. This simpler
layout is more natural for maintenance and also simplifies build
integration outside the LLVM CMake build.
|
|
|
|
Link: #117208
Fixes: #117254
|
|
|
|
As in the title, fixes #91934
|
|
Im working on the floating point fmaximum and fminimum functions right
now in a different pr and I ran the individual tests by doing
```
ninja libc.test.src.math.smoke.<func>_test.__unit__
```
|
|
to performance_testing. (#84646)
Removing all the diff tests.
|
|
This is step 4 of
https://discourse.llvm.org/t/rfc-customizable-namespace-to-allow-testing-the-libc-when-the-system-libc-is-also-llvms-libc/73079
|
|
Extract non-MPFR math tests into libc-math-smoke-tests.
Reviewed By: sivachandra, jhuber6
Differential Revision: https://reviews.llvm.org/D159477
|
|
Clean up exhaustive tests. Let check functions return number of failures instead of passed/failed.
Reviewed By: sivachandra
Differential Revision: https://reviews.llvm.org/D153682
|
|
|
|
|
|
|
|
Add documentation about how to add a math function to LLVM-libc.
Differential Revision: https://reviews.llvm.org/D115608
|