You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests should run regardless of whether ut is brought in using import ut; or #include "ut.hpp". Note that because building ut as a module doesn't work on windows and other dependencies #include standard library headers, building ut as a module is currently infeasible even in a project using modules (but those are separate issues).
Actual Behavior
If ut is brought into a C++20 module using #include instead of import ut; tests will always be skipped.
Expected Behavior
Tests should run regardless of whether ut is brought in using
import ut;
or#include "ut.hpp"
. Note that because building ut as a module doesn't work on windows and other dependencies#include
standard library headers, building ut as a module is currently infeasible even in a project using modules (but those are separate issues).Actual Behavior
If ut is brought into a C++20 module using
#include
instead ofimport ut;
tests will always be skipped.Steps to Reproduce the Problem
#include
ut.hpp in the global module fragmentSpecifications
The text was updated successfully, but these errors were encountered: