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
The function t.Parallel() does not pause the internal timer, so the time that it takes
for the test case to get scheduled gets counted in that test's execution time.
Options:
1) This can be fixed by moving the StopTimer stuff from testing.B to testing.common, and
using those functions inside t.Parallel to stop the timer before doing the chan ops, and
starting the timer again afterwards.
2) Manually pause and resume the timer by messing around with the start time in
t.Parallel
The text was updated successfully, but these errors were encountered:
I can write the fix, but I suspect it is too close to 1.1 to be accepted anyways.
Either way, let me know which option is preferred so that when 1.1 is out, I can write
and send in a CR (if someone doesn't beat me to it).
The text was updated successfully, but these errors were encountered: