summaryrefslogtreecommitdiff
path: root/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg
AgeCommit message (Collapse)Author
2024-01-09[libc++] Allow running the test suite with optimizations (#68753)Louis Dionne
This patch adds a configuration of the libc++ test suite that enables optimizations when building the tests. It also adds a new CI configuration to exercise this on a regular basis. This is added in the context of [1], which requires building with optimizations in order to hit the bug. [1]: https://github.com/llvm/llvm-project/issues/68552
2022-10-19[libc++] Remove std::function in C++03Nikolas Klauser
We've said that we'll remove `std::function` from C++03 in LLVM 16, so we might as well do it now before we forget. Reviewed By: ldionne, #libc, Mordante Spies: jloser, Mordante, libcxx-commits Differential Revision: https://reviews.llvm.org/D135868
2022-06-22[libc++] Remove std::function in C++03Nikolas Klauser
`std::function` has been deprecated for a few releases now. Remove it with an option to opt-back-in with a note that this option will be removed in LLVM 16. Reviewed By: ldionne, #libc Spies: #libc_vendors, EricWF, jloser, libcxx-commits Differential Revision: https://reviews.llvm.org/D127908
2020-09-21[libc++] Fix failures when running the test suite without RTTILouis Dionne
2020-04-21[libc++] Fix warnings with Clang in C++03Louis Dionne
2020-03-13Revert "Revert "Move more tests to globalMemCounter and reset.""Dan Albert
Test regressions not included this time :) This reverts commit 1ed671082ef4b13d44e2c0f42ddedf9d450258a7.
2020-03-13Revert "Move more tests to globalMemCounter and reset."Dan Albert
Not all of these changes were correct. Will reland appropriate parts in a follow up. This reverts commit 4a792965de08fb69652370625f1aec2e87111313.
2020-03-12Move more tests to globalMemCounter and reset.Dan Albert
Summary: Android's libc uses new/delete internally and these are counted, so the counter needs to be reset to zero at the start of the test. Reviewers: EricWF, mclow.lists, #libc, ldionne Reviewed By: #libc, ldionne Subscribers: dexonsmith, libcxx-commits Tags: #libc Differential Revision: https://reviews.llvm.org/D76091
2019-08-21libcxx: Rename .hpp files in libcxx/test/support to .hNico Weber
LLVM uses .h as its extension for header files. Files renamed using: for f in libcxx/test/support/*.hpp; do git mv $f ${f%.hpp}.h; done References to the files updated using: for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do a=$(basename $f); echo $a; rg -l $a libcxx | xargs sed -i '' "s/$a/${a%.hpp}.h/"; done HPP include guards updated manually using: for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do echo ${f%.hpp}.h ; done | xargs mvim Differential Revision: https://reviews.llvm.org/D66104 llvm-svn: 369481
2019-02-04Support tests in freestandingJF Bastien
Summary: Freestanding is *weird*. The standard allows it to differ in a bunch of odd manners from regular C++, and the committee would like to improve that situation. I'd like to make libc++ behave better with what freestanding should be, so that it can be a tool we use in improving the standard. To do that we need to try stuff out, both with "freestanding the language mode" and "freestanding the library subset". Let's start with the super basic: run the libc++ tests in freestanding, using clang as the compiler, and see what works. The easiest hack to do this: In utils/libcxx/test/config.py add: self.cxx.compile_flags += ['-ffreestanding'] Run the tests and they all fail. Why? Because in freestanding `main` isn't special. This "not special" property has two effects: main doesn't get mangled, and main isn't allowed to omit its `return` statement. The first means main gets mangled and the linker can't create a valid executable for us to test. The second means we spew out warnings (ew) and the compiler doesn't insert the `return` we omitted, and main just falls of the end and does whatever undefined behavior (if you're luck, ud2 leading to non-zero return code). Let's start my work with the basics. This patch changes all libc++ tests to declare `main` as `int main(int, char**` so it mangles consistently (enabling us to declare another `extern "C"` main for freestanding which calls the mangled one), and adds `return 0;` to all places where it was missing. This touches 6124 files, and I apologize. The former was done with The Magic Of Sed. The later was done with a (not quite correct but decent) clang tool: https://gist.github.com/jfbastien/793819ff360baa845483dde81170feed This works for most tests, though I did have to adjust a few places when e.g. the test runs with `-x c`, macros are used for main (such as for the filesystem tests), etc. Once this is in we can create a freestanding bot which will prevent further regressions. After that, we can start the real work of supporting C++ freestanding fairly well in libc++. <rdar://problem/47754795> Reviewers: ldionne, mclow.lists, EricWF Subscribers: christof, jkorous, dexonsmith, arphaman, miyuki, libcxx-commits Differential Revision: https://reviews.llvm.org/D57624 llvm-svn: 353086
2019-01-19Update more file headers across all of the LLVM projects in the monorepoChandler Carruth
to reflect the new license. These used slightly different spellings that defeated my regular expressions. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351648
2016-10-10Add tests to check that swap(std::function, std::function) is noexcept. This ↵Marshall Clow
is LWG#2062, but we already do this. No changes to the library, just adding tests. llvm-svn: 283780
2014-12-22[libcxx] Consolidate new/delete replacement in tests and disable it when ↵Eric Fiselier
using sanitizers. Summary: MSAN and ASAN also replace new/delete which leads to a link error in these tests. Currently they are unsupported but I think it would be useful if these tests could run with sanitizers. This patch creates a support header that consolidates the new/delete replacement functionality and checking. When we are using sanitizers new and delete are no longer replaced and the checks always return true. Reviewers: mclow.lists, danalbert, jroelofs, EricWF Reviewed By: EricWF Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D6562 llvm-svn: 224741
2014-12-20Move test into test/std subdirectory.Eric Fiselier
llvm-svn: 224658