-
-
Notifications
You must be signed in to change notification settings - Fork 816
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xmake test -v 显示更多内容 #4571
Comments
再试试 xmake update -s dev |
Try xmake update -s dev again |
没效果呢。
附加版本信息。
|
再试试 |
try again |
|
|
再试试
|
OK,在 |
OK, cout and cerr contents can be output when using |
你在什么场景下需要该功能?
使用xmake test框架,添加
doctest
测试用例。默认情况下只输出测试是否通过,但是想通过
-v
或-vD
来看到更多信息,但是只有在测试用例失败的情况下,-v
才能给出错的位置提示,以及测试用例数量和断言数量。当测试用例都通过时,无论是
-v
还是-vD
都看不到测试向控制台的输出,虽然测试已经通过,这些输出可能不再重要,但是既然提供了细节查看,这些信息还是应该反馈出来的更好吧。我其实想要添加
-v
或-vD
能输出doctest
的输出内容,最好是格式化后的,带颜色的输出。描述可能的解决方案
可以接受另外一个标识来输出测试用例自身的输出,现在的
-v
是与xmake
复用的,给出了一些编译参数。其实测试时的'-vD并不太关心编译的细节,而是测试本身断言的细节。 如果测试失败,
-D`给出的Lua栈的输出,这对于测试来说也没什么帮助。描述你认为的候选方案
现在的测试已经很好用了,希望能再改进。
其他信息
还有一个小问题,如果测试都通过的的话,
0 tests failed
中的0能不能不用红色标注,太显示眼了。The text was updated successfully, but these errors were encountered: