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
In trying to finally resolve #2702 I ran into a trap with the current cmake configuration.
I first configure, build, then run a test. The test fails. I determine that the problem is not with the implementation of the thing I'm testing, but with the test itself. So I change the test, and re-run cmake --build. However the tests still fail as though I had not made any change.
The text was updated successfully, but these errors were encountered:
This is a limitation of the way the tests are generated by CMake, which is something that happens at configure time.
I'm not sure there is an easy way to "build" the tests the same way as C++ source files, but I'll investigate possible ways to get around this.
In trying to finally resolve #2702 I ran into a trap with the current
cmake
configuration.I first configure, build, then run a test. The test fails. I determine that the problem is not with the implementation of the thing I'm testing, but with the test itself. So I change the test, and re-run
cmake --build
. However the tests still fail as though I had not made any change.The text was updated successfully, but these errors were encountered: