Open tobiasleibner opened 3 weeks ago
Parameterized tests should work without warnings.
Parameterized tests result in warnings like
WARNING test 'types' for test suite 'global' already present
The tests seems to be run for all parameters, though, so the warnings seems to be harmless (?).
x86_64 GCC 14.2
-std=c++20
#include <https://raw.githubusercontent.com/boost-experimental/ut/v2.0.0/include/boost/ut.hpp>
-> The warnings are gone
#include <https://raw.githubusercontent.com/boost-experimental/ut/v2.1.0/include/boost/ut.hpp>
-> The warnings appear again.
Expected Behavior
Parameterized tests should work without warnings.
Actual Behavior
Parameterized tests result in warnings like
The tests seems to be run for all parameters, though, so the warnings seems to be harmless (?).
Steps to Reproduce the Problem
x86_64 GCC 14.2
,-std=c++20
) -> The warnings show up when executing the test (and there are a few compiler warnings during the compilation but that is not the subject of this issue)-> The warnings are gone
-> The warnings appear again.