Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 eclipse 中设置断点来调试 boost 单元测试时,它并没有停止。我用调试符号编译了它,但它正好超过了断点。
事实证明,您需要向测试可执行文件添加一个参数。
在测试的调试配置下,您需要在参数选项卡下设置程序参数。
--catch_system_errors=no
否则,可执行文件会忽略有关断点的信息。