summaryrefslogtreecommitdiffstats
path: root/thirdparty/doctest
Commit message (Collapse)AuthorAgeFilesLines
* doctest: Update to 2.4.11Rémi Verschelde2023-05-112-32/+119
|
* doctest: Update to 2.4.9Rémi Verschelde2022-06-191-953/+1156
|
* doctest: Update to 2.4.8Rémi Verschelde2022-05-171-561/+797
|
* doctest: Update to 2.4.6Rémi Verschelde2021-10-042-196/+392
|
* doctest: Update to 2.4.4Rémi Verschelde2021-01-081-105/+229
| | | | | Make ClassDB test macros enforce their msg to be constructed as String, since doctest 2.4.2 changes the message passing to vararg.
* doctest: Update to 2.4.1Andrii Doroshenko (Xrayez)2020-11-203-163/+194
| | | | Includes a patch for breakpoint inline assembly for macOS.
* [macOS / ARM64] Remove "-msse2" flag from ARM64 release export template ↵bruvzg2020-07-242-0/+24
| | | | build. Add ARM64 breakpoint inline assembly to "doctest".
* t Add unit testing to Godot using DocTest and added to GitHub Actions CIRevoluPowered2020-07-242-0/+6226
Implements exit codes into the engine so tests can return their statuses. Ideally we don't do this, and we use FIXUP logic to 'begin' and 'end' the engine execution for tests specifically. Since realistically we're initialising the engine here we don't want to do that, since String should not require an engine startup to test a single header. This lowers the complexity of running the unit tests and even for physics should be possible to implement such a fix.