File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# How to release
2
2
3
3
* Make sure you're on main and synced to HEAD
4
- * Ensure the project builds and tests run (sanity check only, obviously)
4
+ * Ensure the project builds and tests run
5
5
* ` parallel -j0 exec ::: test/*_test ` can help ensure everything at least
6
6
passes
7
7
* Prepare release notes
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ IterationCount BenchmarkRunner::PredictNumItersNeeded(
244
244
const IterationCount max_next_iters = static_cast <IterationCount>(
245
245
std::lround (std::max (multiplier * static_cast <double >(i.iters ),
246
246
static_cast <double >(i.iters ) + 1.0 )));
247
- // But we do have *some* sanity limits though..
247
+ // But we do have *some* limits though..
248
248
const IterationCount next_iters = std::min (max_next_iters, kMaxIterations );
249
249
250
250
BM_VLOG (3 ) << " Next iters: " << next_iters << " , " << multiplier << " \n " ;
@@ -261,7 +261,7 @@ bool BenchmarkRunner::ShouldReportIterationResults(
261
261
i.seconds >= min_time || // The elapsed time is large enough.
262
262
// CPU time is specified but the elapsed real time greatly exceeds
263
263
// the minimum time.
264
- // Note that user provided timers are except from this sanity check .
264
+ // Note that user provided timers are except from this test .
265
265
((i.results .real_time_used >= 5 * min_time) && !b.use_manual_time ());
266
266
}
267
267
You can’t perform that action at this time.
0 commit comments