Open Sebanisu opened 3 years ago
Though it seems ut is cpp20 now. I think in an older talk it was cpp17. Yeah it failed to compile, if I was in cpp17 a lot of errors in gcc.
I am happy to use either Kris's ut
or Catch2
. If you open a PR, will be happy to merge.
Okay I have been trying out ut
on my codebase this week. I've mirrored what you've done and started splitting stuff off into another library that isn't gpl. I have a lot of time off next week so maybe I'll work on a PR Monday. :)
I don't have much exp with catch2. Though I think it wouldn't take much work to setup. This site shows an example of how to add catch2 via cmake: https://cliutils.gitlab.io/modern-cmake/chapters/projects/fetch.html
https://github.com/catchorg/Catch2/blob/devel/docs/other-macros.md shows STATIC_REQUIRE which can be used as a static_assert but it'll show as a pass or fail instead of just failing to compile. Since the code is constexpr I figure something like this would be a good way to go.
Or maybe we could try https://github.com/boost-ext/ut From the talks I saw it seems neat.
I don't know if it's got a static_require like thing or if it needs it.To test the constexpr, since this just uses lambdas, is just assign to a constexpr variable in the lambda and require it to be true.example ut.cmake file.
To use this afterwards: (based on example on ut's readme)