mirror of
https://github.com/ninja-build/ninja.git
synced 2026-06-30 19:58:23 +00:00
It seems that new versions of CTest now require case-sensitive arguments, resulting in an "unknown argument" error for "-vv", while documentation shows the argument for the full verbosity option as "-VV". In CMakeLists.txt, there is currently only 1 test registered to CMake with add_test(), and that is to run the ninja_test binary. Since using CTest is not reducing the number of commands used for testing, fix the testing invocation by replacing CTest with a direct run of the test. Signed-off-by: Michael Pratt <mcpratt@pm.me>