summaryrefslogtreecommitdiff
path: root/libc/test/src/stdlib/SortingTest.h
AgeCommit message (Collapse)Author
2025-03-07[libc][bazel] Minor cleanup to remove unused dependencies. (#130348)Alexey Samsonov
* strcpy doesn't need to depend on memcpy * qsort_test_helper has been generalized and doesn't need to depend on qsort. This is a small cleanup to unblock the work outlined in #130327.
2025-01-06[libc] Fix sort test failing on NVPTXJoseph Huber
Summary: This test uses too much stack and crashes, make the buffer `static` to push it to `.bss`. This shouldn't change behavior because the tests are all run single threaded.
2025-01-05[libc][fuzz] workaround gcc's constexpr capture issue in sort fuzzer (#121684)Schrodinger ZHU Yifan
Fix the build problem at https://lab.llvm.org/buildbot/#/builders/131/builds/13255
2025-01-05[libc] Improve qsort (with build fix) (#121482)Lukas Bergdoll
2024-12-29Revert "[libc] Improve qsort" (#121303)Schrodinger ZHU Yifan
Reverts llvm/llvm-project#120450
2024-12-29[libc] Improve qsort (#120450)Lukas Bergdoll
2024-07-16[libc][stdlib] Implement heap sort. (#98582)lntue