-
Notifications
You must be signed in to change notification settings - Fork 37
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
test: Improve spectest runner output #453
Conversation
4e05bc0
to
e1807c7
Compare
|
||
if (type == "module") | ||
{ | ||
const auto filename = cmd.at("filename").get<std::string>(); | ||
log_no_newline("Instantiating " + filename + " "); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing this, as I don't think it was very useful, and it would complicate things a bit to keep it.
The line will read just Line 3: module PASSED
(instead of Line 3: module Instantiating call.0.wasm PASSED
)
Codecov Report
@@ Coverage Diff @@
## master #453 +/- ##
=======================================
Coverage 99.50% 99.50%
=======================================
Files 52 52
Lines 14791 14813 +22
=======================================
+ Hits 14718 14740 +22
Misses 73 73 |
e1807c7
to
f8de506
Compare
Looks nice. Just I would use lowercase |
f8de506
to
70812ff
Compare
70812ff
to
30c92cc
Compare
Changed. |
In order to not have reduced coverage, |
d932845
to
e1f1dc4
Compare
e1f1dc4
to
04d3eef
Compare
Closes #450
Current output without skipped:
With skipped:
Also supported are
--show-passed
and--hide-failed
.