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
Most of the computation time goes into loading standard libraries and other packages required by the package being tested. The time will be inconsistent due to varying factors on the machine, like disk access times, so there will be some small differences; but as exist in go and as in most computation.
Ideally, we'd separate the test execution time from the time to load the imports; this could be done, and could make the numbers add up correctly.
Description
When running
gno test . -v
on code, for example in ther/demo/counter
directory, test times differ between executions:Not sure why this is happening, or if it should happen, especially since there is not parallelism or concurrency involved.
Anyways, this might be replaced by the amount of gas consumed instead, which is a more useful metric: #2467
Any ideas @mvertes @thehowl?
The text was updated successfully, but these errors were encountered: